Query auto rotation images
The jQuery Cycle Plugin is a slideshow plugin that supports huge options for customizing your slideshow. This plugin allows you to quickly and easily create a slideshow out of anything contained within a given div element.
CSS Style for previous and Next buttona long with configuration.
Example 1: jQuery cycle plugin previous and Next links for slider.
$('#slide1').cycle({
fx: 'fade',
speed: 'fast',
timeout: 0,
next: '#next',
prev: '#prev'
});
Example 2: jQuery cycle plugin auto rotation. hover to pause, click to see next image.
$('#slide1').cycle({
fx: 'fade',
speed: 300,
timeout: 3000,
next: '#s3',
pause: 1
});
Example 3: jQuery cycle plugin – show numeric pagination.
view plaincopy to clipboardprint?
$('#slide1')
.before('
Comments