jQuery - cycle help
Posted
by MrTunes
on Stack Overflow
See other posts from Stack Overflow
or by MrTunes
Published on 2008-11-20T05:02:49Z
Indexed on
2010/04/06
19:53 UTC
Read the original article
Hit count: 431
I'm looking to get some help on using the cycle library for jQuery. I'm in the beginner demos, and I got the absolute first one completed. This is the second one on the page.
<script src="jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="jquery.cycle.all.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.pics').cycle({
fx: 'scrollDown',
speed: 300,
timeout: 2000
});
</script>
My CSS is identical to the one on the page, that's why I put .pics in the quotes.
© Stack Overflow or respective owner