jQuery仅在startpage上显示背景图像

时间:2012-06-13 08:30:04

标签: jquery

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

1 个答案:

答案 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();
   }
});