Advertisement
fakesamgregory

Framer Motion in Webflow

Nov 14th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="module">
  2.     import { animate, scroll, inView, stagger } from "https://cdn.jsdelivr.net/npm/motion@11.11.13/+esm"
  3.  
  4.     const heroHeading = document.querySelector(".hero-heading")
  5.  
  6.     animate(heroHeading, { opacity: [0, 1] }, { initial: { opacity: 0 } })
  7.  
  8.     inView(".logo-banner-link", (info) => {
  9.         animate(info.target, { opacity: [0, 1]  }, { delay: stagger(0.5) })
  10.     })
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement