0

如何显示全屏,仅在起始页上调整背景图像的大小。我在背景中有一个 div,它延伸到整个背景,在 window.load 上调整大小。除非当前页面是起始页,否则如何隐藏此 div?

4

1 回答 1

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();
   }
});
于 2012-06-13T08:36:22.947 回答