Capítulo 135 de 142
Curated recipes from Motion's official examples gallery for text effects. Each entry is implemented in one or more of vanilla JS, React, and Vue; consult the framework-specific example on motion.dev for the full runnable version.
<ul class="list">
<li class="item">
<span class="text">
<span class="number-label">01</span>
Home
</span>
<span class="text" aria-hidden>
<span class="number-label">01</span>
Home
</span>
</li>
<li class="item">
<span class="text">
<span class="number-label">02</span>
Photos
</span>
<span class="text" aria-hidden>
<span class="number-label">02</span>
// ...
<div class="container">
<h2 class="title">
<span class="text" id="text"></span>
<div class="cursor"></div>
</h2>
</div>
<script type="module">
const text = "Hello world!"
const textElement = document.getElementById("text")
const cursor = document.querySelector(".cursor")
</script>
<style>
/** Copy styles from example source code */
</style>