Created
May 16, 2014 14:07
-
-
Save jartes/279863942809c11509f2 to your computer and use it in GitHub Desktop.
Ejemplo de FlexSlider Básico
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"> | |
| <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