[jQuery] Fade in first slide in Cycle
Hi all. I am using Cycle and I am trying to get the first slide to
fade in. I am new to all of this and I just can't get it to work. I
looked at the 2 examples that Mike has on his page, but I just don't
know what exactly to put where with regards to the code.
I am setting up a portfolio with simple fade transitions between each
example. I am utilizing both a prev and next option with the paging
feature as well.
If someone could be pretty specific as to what code needs to go where,
I would appreciate it.
Thanks in advance for your help.
Here is the script that I currently have on my page.
<script type="text/javascript">
$(function() {
$('#cycleViewer').cycle({
fx: 'fade',
timeout: 000,
fastOnEvent: 000,
pager: '#nav',
next: '#next',
prev: '#prev',
nowrap: 1,
pagerAnchorBuilder: function(idx, slide) {
// return sel string for existing anchor
return '#nav li:eq(' + (idx) + ') a';
}
});
});
</script>