Multiple Image Cross Fade Transition then event
I'm building a site which on the front I want an image to crossfade
between several images, end on the last one then after a few seconds a
panel slide in with text on it.
I'm quite new to JQuery and I've been using the Cycle Plugin and it
works until the end image then I cant figure out how to make the
#panel div slide in.
My code is here:
$(function () {
$('#pics').cycle({
fx: 'fade',
autostop: ".meridian",
speed: 300,
timeout: 200
});
if($('#pics').cycle(".meridian":visible) {
$('#panel').animate("left":"0px");
});
});
Can anyone point me in the right direction? Many thanks!!