gsap scroll
Mon Jul 21 2025 15:10:45 GMT+0000 (Coordinated Universal Time)
Saved by
@Bh@e_LoG
<link rel="stylesheet" href="https://unpkg.com/lenis@1.1.13/dist/lenis.css">
27
<script src="https://unpkg.com/lenis@1.1.13/dist/lenis.min.js"></script>
28
<script>
29
const lenis = new Lenis()
30
31
lenis.on('scroll', (e) => {
32
console.log(e)
33
})
34
35
function raf(time) {
36
lenis.raf(time)
37
requestAnimationFrame(raf)
38
}
39
40
requestAnimationFrame(raf)
41
</script>
content_copyCOPY
Comments