Fade in background image with jQuery

前端 未结 3 1615
傲寒
傲寒 2020-12-22 11:14

This is the first time I am using jQuery. I am loading a large background image and when it is loaded I am fading it in over three seconds. This script works on Firefox and

3条回答
  •  伪装坚强ぢ
    2020-12-22 11:59

    use

     $('div.bgImage').animate({ opacity: 1 }, { duration: 3000 });
    

    assuming you are starting of with style="opacity: 0;"

提交回复
热议问题