accessing the pagerEvent in the cycle plugin
Hi....
I found an example to use thumbnails as pagers with the cycle plugin, and I want to know how to implement a fadein effect when the mouse is over one of these thumbnails. Here is the code:
- $(function() {
$('#slideshow').before('<ul id="nav">').cycle({
speed: 1500,
timeout: 3000,
pager: '#nav',
pagerEvent: 'mouseover',
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>';
}
});
});
The cycle works fine, but I want a fadeIn effect when the pagerEvent is triggered and I don´t know how to do it.
Thank you...