javascript - jQuery fadeIn() different intervals with multiple div's -
i have homepage 6 div's. different shaped boxes, , want them fade in @ random intervals when page loads. javascript code follows:
$(document).ready(function(){ $("#topleft").fadein(2000).animate({opacity: 1.0}); });
of course, need 6 div's targeted, not one, , want them randomly fade in within 3 seconds of page load. how go this? way, using jquery , since i'm new @ it, there may use don't know about.
here's example you: http://jsfiddle.net/paulpro/gtfsk/
Comments
Post a Comment