Last active
October 7, 2015 05:07
-
-
Save jasperf/3109978 to your computer and use it in GitHub Desktop.
Nivo Scripts Loader WordPress #wordpress #slider
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
<!-- Include the Nivo Slider JS file --> | |
<script src="<?php bloginfo("template_url"); ?>/scripts/nivoslider/jquery.nivo.slider.pack.js" type="text/javascript"></script> | |
<!-- Set up the Nivo Slider --> | |
<script type="text/javascript"> | |
jQuery(window).load(function() { | |
jQuery('#slider').nivoSlider({ | |
effect: 'fade', // Specify sets like: 'fold,fade,sliceDown,slideInRight,sliceUpLeft' | |
animSpeed: 500, // Slide transition speed | |
pauseTime: 6000, // How long each slide will show | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment