您需要使用edge或mozilla打开以下页面
这是页面:codepen.io
这是我尝试过的:
html{
max-height:1900px;
max-width:2600px;
}
因此,当访问者缩小时,我不希望图像缩小并显示空白区域。我希望图像保持不变并缩小。我希望我说的话有道理。
注意:我使用jquery来获取背景图像。
document.body.style.backgroundImage = "url(http://eskipaper.com/images/sunny-day-4.jpg)";
答案 0 :(得分:2)
为什么要使用jquery将图像加载到正文?这太过分了。你可以通过CSS加载它:
html {
background: url('http://eskipaper.com/images/sunny-day-4.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
这将使您的图像在缩放时保持固定大小。不需要javascript。