I have a cycle function that will only ‘fade’. If I put any other effect in the code, nothing happens. I do know that fade is the default, so I assume that is why it is working, but nothing else.
So this code works. when I change ‘fade’ to ‘scrollLeft’ or ‘shuffle’ it only shows the first pic.
<script type=“text/javascript”>
$(document).ready(function() {
$(‘#mTopPhotos’).cycle({
fx: ‘fade’,
next: ‘#mNextArrow’,
prev: ‘#mBackArrow’
});
});
</script>
<div id=“mTopPhotos”>
<a href=“http://example1.com”><img…></a>
<a href=“http://example2.com”><img…></a>
<a href=“http://example3.com”><img…></a>
<a href=“http://example4.com”><img…></a>
</div>
Thanks