Fade in background image with jQuery

前端 未结 3 1619
傲寒
傲寒 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

    for this you dont need to write that many lines of code this simple code will work for u...

    $(document).load(function () {
      $('div.bgImage').css('background-image', 'url(./css/background.jpg)');
    
      $(document).ready(function () {
        $('div.bgImage').fadeIn(3000);
      });
    });
    

提交回复
热议问题