I'm using Nivo Slider for my homepage and I'm trying to get the effect to push the image to the right and a new image comes from the left. Does Nivo Sider does this or I need to use something else
.
Posted 28 September 2012 - 20:07
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider({
effect: 'random'
});
});
</script>
It accepts slideInRight or slideInLeft.
Posted 28 September 2012 - 20:14
If I remember correctly rather than accepting a direction parameter you have to do this in the effect.
<script type="text/javascript"> $(window).load(function() { $('#slider').nivoSlider({ effect: 'random' }); }); </script>It accepts slideInRight or slideInLeft.