web-dev-qa-db-ja.com

背景画像のフェードイン

背景に大きな画像を使用するWebページがあります。私はjQueryを使用して、ダウンロードされたイメージをロードすることを望んでいました(基本的にはbing.comが背景イメージをロードする方法です)。これはjQueryで可能ですか?もしそうなら、あなたがお勧めするプラグインはありますか?

20
Villager

この 記事 は役に立つかもしれません。そこからコピー:

[〜#〜] html [〜#〜]

<div id="loader" class="loading"></div>

[〜#〜] css [〜#〜]

DIV#loader {
  border: 1px solid #ccc;
  width: 500px;
  height: 500px;
}

/** 
 * While we're having the loading class set.
 * Removig it, will remove the loading message
 */
DIV#loader.loading {
  background: url(images/spinner.gif) no-repeat center center;
}

Javascript

// when the DOM is ready
$(function () {
  var img = new Image();

  // wrap our new image in jQuery, then:
  $(img)
    // once the image has loaded, execute this code
    .load(function () {
      // set the image hidden by default    
      $(this).hide();

      // with the holding div #loader, apply:
      $('#loader')
        // remove the loading class (so no background spinner), 
        .removeClass('loading')
        // then insert our image
        .append(this);

      // fade our image in to create a Nice effect
      $(this).fadeIn();
    })

    // if there was an error loading the image, react accordingly
    .error(function () {
      // notify the user that the image could not be loaded
    })

    // *finally*, set the src attribute of the new image to our image
    .attr('src', 'images/headshot.jpg');
});
11
kgiannakakis

最初にイメージをロードし、ロードが完了したら、それを背景イメージとして設定できます。そうすれば、ブラウザは(できれば)キャッシュから背景画像を再ダウンロードする代わりにロードします。プラグインとしてリクエストしたとおり:

 $.fn.smartBackgroundImage = function(url){
  var t = this;
  //create an img so the browser will download the image:
  $('<img />')
    .attr('src', url)
    .load(function(){ //attach onload to set background-image
       t.each(function(){ 
          $(this).css('backgroundImage', 'url('+url+')' );
       });
    });
   return this;
 }

次のように使用します。

 $('body').smartBackgroundImage('http://example.com/image.png');
25
Pim Jager

CSSの背景画像は使用できません。画像の読み込みにイベントを添付することは不可能だからです(私の知る限り)。

だから私はそれを試してみますが、それをテストしていません:

HTML:

<body>
<div class="bgimage"><img src="/bgimage.jpg" ></div>
<div>
  ... content ...
</div>
</body>

CSS:

.bgimage { position: absolute: }

Javascript:

$(function() {
   $(".bgimage")
      .css("opacity",0);
      .load(function() { $(this).fadeIn(); });
});
1