Created
May 16, 2014 15:03
-
-
Save jartes/0c4c52597f16d531e58b to your computer and use it in GitHub Desktop.
Ejemplo de FlexSlider Básico preparado para Infinite Scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="flexslider" slider-started="0" slider-type="basico" slider-animation="slide"> | |
| <ul class="slides"> | |
| <li> | |
| <img src="slide1.jpg" /> | |
| </li> | |
| <li> | |
| <img src="slide2.jpg" /> | |
| </li> | |
| <li> | |
| <img src="slide3.jpg" /> | |
| </li> | |
| <li> | |
| <img src="slide4.jpg" /> | |
| </li> | |
| </ul> | |
| </div> | |
| <script> | |
| jQuery(window).load(function() { | |
| jQuery('.flexslider').flexslider({ | |
| animation: "slide" | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment