Jump to content
Search Community

JQuery Slideshow with GSAP JQuery plugin

csole 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

Using bxSlider for example, if this is my markup inside the header tag:

 

<script type="text/javascript" src="js/jquery.min.js"></script>
<script src="js/jquery.bxslider.js" type="text/javascript"></script>
 
<script> 
$(document).ready(function(){
  $('.bxslider').bxSlider();
});
 
var originalNavClasses;
</script>

should i changed by?:

 

<script src="js/TweenMax.min.js"></script>
<script src="js/jquery.gsap.min.js"></script>
<script src="js/jquery.bxslider.js" type="text/javascript"></script>
 
<script> 
$(document).ready(function(){
  $('.bxslider').bxSlider();
});
 
var originalNavClasses;
</script>
 
 
Link to comment
Share on other sites

Hi,

 

I don't know if you'd be interested but I created a very simple slider using GSAP. The code is obsessively commented so you wouldn't have much trouble knowing how and why things are done in it:

 

See the Pen CeDkc?editors=001 by rhernando (@rhernando) on CodePen

 

Is just a barebone example but a good starting point, the rest is getting creative with the animations, which with GSAP is not too hard ;)

 

Rodrigo.

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