Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active October 7, 2015 05:07
Show Gist options
  • Save jasperf/3109978 to your computer and use it in GitHub Desktop.
Save jasperf/3109978 to your computer and use it in GitHub Desktop.
Nivo Scripts Loader WordPress #wordpress #slider
<!-- 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