我有一個背景圖像被拉伸以適應整個屏幕。我正在嘗試編寫一個將背景更改爲另一個圖像的腳本。我當前的腳本不會將圖像拉伸以適應整個屏幕,而是將圖像居中。在Firefox,IE和Opera中會出現此問題。 Chrome和Safari似乎未受影響。我跟着this教程來創建整頁背景圖片。使用JavaScript更改背景圖像
CSS:
html {
background: url(../img/01.jpg) no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
的JavaScript:
$('#previous').click(function() {
$('html').css('background', 'url(img/01.jpg) no-repeat center fixed');
});
$('#next').click(function() {
$('html').css('background', 'url(img/02.jpg) no-repeat center fixed');
});
不知道這是否會有所幫助,但是您是否曾嘗試將html標籤的高度和寬度設置爲100%? – Chase
剛剛嘗試過,但沒有工作:( – Jon