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
Post a Comment