jquery - Delay with slow fade in after rest of page is loaded - Javascript -


basically, want make div image fade in after delay, after rest of page has loaded. of page load, there delay, image fade in. here code. doesn't seem working.

    $(window).load(function() {  // $(document).ready shorthand        $('.contentrightcopy').delay(i * 400).fadein(2000);     }); 

fixed problem. works fine now. added...

    display: none; 

to css of .contentrightcopy added javascript.

$(window).load(function() {     $('.contentrightcopy').delay(2000).fadein(2000) }) 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -