17 lines
296 B
JavaScript
17 lines
296 B
JavaScript
jQuery(function ($) {
|
|
gsap.registerPlugin(ScrollTrigger)
|
|
|
|
gsap.to('.box-1 .col-2 img', {
|
|
scrollTrigger: {
|
|
trigger: '.box-1 .col-2',
|
|
start: 'top top',
|
|
endTrigger: '.box-2 .row',
|
|
end: 'bottom bottom',
|
|
pin: true,
|
|
scrub: true,
|
|
anticipatePin: 1,
|
|
markers: true,
|
|
},
|
|
})
|
|
})
|