Jquery image fadein delay by X
问题 How can I get my images to appear one after the other? I am currently using Jquery fadein to make my images fadein but I want them to start at different times. Is there anyway i can delay an image from fading in? in seconds? <script type="text/javascript"> $(document).ready(function(){ window.onload = function() { $('.fader1').hide().fadeIn(3000); $('.fader2').hide().fadeIn(9000); $('.fader3').hide().fadeIn(6000); }; }); </script> <div class="fader1"><img src="demo.jpg"></div> <div class=