如何显示全屏,仅在起始页面调整背景图片大小。 我在后台有一个div延伸到整个背景,在window.load上调整大小。除非当前页面是首页,否则如何隐藏此div?
答案 0 :(得分:0)
的CSS:
.pageBg {
display: none;
position: absolute;
// set background and other properties
}
HTML:
<body>
<div class="pageBg">
</div>
<div>
Page content
</div>
的javascript:
$(function() {
if(isStartPage()) {
$(".pageBg").show();
}
});