Jump to content
Search Community

Building a responsive full width slider (carousel)?

neuhaus3000 test
Moderator Tag

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

It is not extremely difficult to achieve something like this.

 

You could try and attach some logic into the resize event.

$(window).resize(function(){
   // resize container here
});

Then for the slider you could setup your animation to animate left/right according to the full-width of the browser. Like follows:

// sliding right to left
function slideNext(){
   TweenMax.to(container, 1, {marginLeft: "-="+$(window).innerWidth()});
}

// sliding left to right
function slidePrev(){
   TweenMax.to(container, 1, {marginLeft: "+="+$(window).innerWidth()});
}

*Provided that the "containers" inside the main slider span for the full browser width.

Link to comment
Share on other sites

  • 4 weeks later...

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...