Jump to content
Search Community

Add Position Fixed On Window Resize For Smaller Screen And Remove For Larger Screens

emilychews test
Moderator Tag

Recommended Posts

Hi,

 

I have a 'Next Post' button on a site that links to the next post in chronological order. On mobile I want to change the position to fixed so it stays in the bottom of the screen after you scroll past the main text. 

 

The problem I'm having is when I reduce the window size down, this does indeed happen, but when I resize the window back up the button disappears. I have a JS 'resize' event on the function that fires the GSAP scroll trigger so am a bit confused what's happening?

 

Any help would be wonderful.

 

See the Pen YzqQMwP by emilychews (@emilychews) on CodePen

Link to comment
Share on other sites

Hi Emily,

I have some suggestions for improvements for your demo.

 

Issues

First of all you don't need GSAP to change the position of your element, you can simply specify this in the stylesheet.

 

.next-post {
  ...
}

@media screen and (max-width: 579px) {
  .next-post {
    position: fixed;
    visibility: hidden;
    ...
  }
}

Also you don't need the resize event listener, in your demo you are creating a new ScrollTrigger every-time the user resizes the window. Try slowly resize on the smaller screens and you will see multiple ScrollTrigger markers being added to the DOM.

 

image.thumb.png.76b35d2a950d456764d3988f9ba24c87.png

 

Solution

Use ScrollTrigger matchMedia, this is a great way to specify a breakpoint in your JS file and create trigger only for that breakpoint.

 

ScrollTrigger.matchMedia({
  // small screen that matches your CSS break point
  "(max-width: 579px)": function () {
    // setup animations and ScrollTrigger if the link exists
    if (nextPost) {
      // simple tween, you don't need a timeline
      gsap.to(nextPost, {
        duration: 0.5,
        autoAlpha: 1,
        scrollTrigger: {
          trigger: ".column",
          toggleActions: "restart pause reverse pause",
          start: "bottom 80%",
          // specify which element should trigger the end of your animation
          endTrigger: "main",
          end: "bottom 100%",
          scrub: true,
          markers: true
        }
      });
    }
  },
  // larger screen
  "(min-width: 580px)": function () {
    // remove any inline styles from the nextPost button
    // I thought this would be done automatically by ScrollTrigger but it didn't
    gsap.set(nextPost, { clearProps: "all" });
  }
});

Use autoAlpha to show/hide your link. GreenSock's autoAlpha combines opacity and visibility in one handy property. If you only use opacity, the link is not showing to the user, but is still clickable in the browser and might result in users accidentally clicking on it.

 

In the large breakpoint I did use the clearProps to remove all inline styles set in the smaller breakpoint.

gsap.set(nextPost, { clearProps: "all" });

 

Here is the demo

See the Pen VwaWojw by ihatetomatoes (@ihatetomatoes) on CodePen

 

Feel free to adjust the ending values.

 

Cheers

Petr

  • Like 3
Link to comment
Share on other sites

It would be great if anyone from the @GreenSock team could clarify why the tween hasn't been automatically cleared when the user resizes to the larger breakpoint? 

 

I have also tried to return a function in the media query to kill that tween, but the result was the same. The inline styles were still on the link, making it hidden on large breakpoints.

 

ScrollTrigger.matchMedia({
  "(max-width: 579px)": function () {
    let tween;
    if (nextPost) {
      tween = gsap.to(nextPost, {..., scrollTrigger: {...} });
    }
    return function() {
      tween && tween.kill(); 
      console.log(tween);
      console.log('trying to kill this tween');
      // other cleanup code can go here. 
    };
  }
});

Any ideas?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...