0

私はかなり長い間 Web デザインから離れていましたが、誰かがこの効果を再現するために私に助けを求めてきました: http://www.jetsetter.com/destinations/italy?nm=destinations

私は他の誰かの助けを借りてここにかなり近づきましたが、今は背景を変えることができません. 背景色を変更すると機能しますが、背景画像は変更しません。

誰かが見て、私が見逃したものを見ることができますか?

http://jsfiddle.net/pfwwv/28/

$(document).ready(function(){
// attach a waypoint to each div.waypoint element
// the callback is executed every time the user scrolls past 
// see http://imakewebthings.com/jquery-waypoints/#docs
$('.waypoint').waypoint(function(direction){
    // you can use the direction parameter here to check which way the user was     scrolling if you need

    // get the background-image source from the data-src property on the DOM element
    var backgroundSrc = $(this).attr('data-src');

    // now update the CSS for the body
    $(document.body).css({
     'background-image': backgroundSrc
    });
 });

});

4

1 に答える 1

0
$(document.body).css({
    'background-image': 'url(' + backgroundSrc + ')'
});

jQuery CSS プロパティを使用して background-image を設定する

于 2013-11-15T02:28:29.423 に答える