Im fairly new to jquery. On my homepage I have the cycle plugin installed which works great.
But I want it to be automated. I have looked at several explanations and demos on malsup. I tried to do it with my basic knowledge but everything gets really messy. I really hope anyone is willing to help me.
<code>
jQuery(function($){
$(document).pngFix();
Cufon.replace('.lavaLamp li a', { fontFamily: 'Museo 700' });
Cufon.replace('h1', { fontFamily: 'Museo 700' });
Cufon.replace('h2', { fontFamily: 'Museo 700' });
Cufon.replace('h4', { fontFamily: 'Museo 700' });
Cufon.replace('h3', { fontFamily: 'Museo 700' });
Cufon.replace('h5', { fontFamily: 'Museo 700' });
Cufon.replace('h6', { fontFamily: 'Museo 700' });
});
jQuery(window).load(function(){
jQuery(".billboard-left").cycle({
fx: "scrollHorz",
timeout: 0,
prev: ".billboard-prev",
next: ".billboard-next",
easing: "easeOutCubic",
cleartype: true,
cleartypeNoBg: true
});
jQuery(".billboard-image").cycle({
fx: "scrollVert",
timeout: 0,
prev: ".billboard-prev",
next: ".billboard-next",
easing: "easeOutCubic"
});
});
if(!jQuery.browser.msie || !(jQuery.browser.msie && jQuery.browser.version == 6)){
jQuery(window).load(function(){
jQuery(".lavaLamp").lavaLamp({fx: "backout", speed: 700});
});
}
</code>
I have been messing around with this but nothing I did worked, this is the original again.
The only thing that I'm looking for is the images to auto rotate in the Imac, featured on my homepage, every 5 seconds, or something like that.
With kind regards,
timmy