I am a big time newby! I have used several simple jquery itmes successfully, but I am now having a problem using the jquery cycle plugin. I have been successful using the cycle plugin for the fade option with the following code:
<!--
$(document).ready(init);
function init() {
$(".pics").cycle();
$('#s5').cycle({ fx: 'shuffle', delay: -4000 });
}
// -->
</script>
.
.
.
However, I want the shuffle option. I have found the code:
.
$(
'#shuffle').cycle({
fx: 'shuffle',
easing: 'easeOutBack',
delay: -4000
});
as well as:
$('#s5').cycle({
fx: 'shuffle',
delay: -4000
});
I have tried to fit all in the call, but have failed. Face the reality that I do not know as yet how to structure this call or stack multiple option calls.
fishBait