Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function animateBrilliant() {
- if (window.screen.width >= 1024) {
- gsap.registerPlugin(ScrollTrigger);
- var tl = gsap.timeline({
- scrollTrigger: {
- trigger: ".banner__video",
- scrub: true,
- pin: true,
- invalidateOnRefresh: true
- },});
- tl.to(".banner__video", {
- x: () => {
- let cStart = document.querySelector(".banner__video").getBoundingClientRect();
- let cEnd = document.querySelector(".services__video").getBoundingClientRect();
- return (cStart.x - cEnd.x) * -1;
- },
- y: () => {
- let cStart = document.querySelector(".banner__video").getBoundingClientRect();
- let cEnd = document.querySelector(".services__video").getBoundingClientRect();
- return cEnd.y - cStart.y - cEnd.height;
- },
- ease: "none",
- duration: 5
- });
- tl.to(".services__video", {
- duration: 0,
- opacity: 1,
- });
- tl.to(".services__station_glow", {
- duration: 0,
- opacity: 1,
- });
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment