Fade in boxes 1 after the other with jQuery
Im trying to make a 'blanket' of divs containing child divs 150px high and
150px wide.
I want each child div to fade in 1 after the other after after a
millisecond or so, opacity changing from 0, to 1.
I cant seem to figure out how this works, or how id do it though?
http://jsfiddle.net/CCawh/
JS
$(function(){
var figure = [];
w = 1500;
h = 450;
for(i = 0, i < 30, i++){
$('div').append(figure[].clone()).fadeIn();
}
});
No comments:
Post a Comment