JQuery Projects
JS Projects
|
PROJECT NAME: Cycle Plugin
The Cycle Plugin is great when you want to show special effect with photos such as scrolling, dropping, flipping, etc...
Cycle Plugin
Library Setup
Here is the code that does it. Make sure you have the following JS classes:
Fade Effect
jQuery('#fade').cycle('fade');
Scroll Down Bounce Effect
jQuery(document).ready(function() {
jQuery('.scrollDownBounce').cycle({
fx: 'scrollDown',
speedIn: 2000,
speedOut: 500,
easeIn: 'bounceout',
easeOut: 'backin',
delay: -2000
});
});
Zoom Bounce Effect
jQuery(document).ready(function() {
jQuery('.scrollDownBounce').cycle({
fx: 'zoom',
easing: 'bouncein',
delay: -4000
});
});
Shuffle Effect
jQuery(document).ready(function() {
jQuery('.scrollDownBounce').cycle({
fx: 'shuffle',
delay: -4000
});
});
|