我有一个背景图像被拉伸以适应整个屏幕。我正在尝试编写一个脚本,将背景更改为另一个图像。我当前的脚本不会拉伸图像以适应整个屏幕,而是将图像居中。这个问题出现在 Firefox、IE 和 Opera 中。Chrome 和 Safari 似乎不受影响。我按照本教程创建了整页背景图像。
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');
});