Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何显示全屏,仅在起始页上调整背景图像的大小。我在背景中有一个 div,它延伸到整个背景,在 window.load 上调整大小。除非当前页面是起始页,否则如何隐藏此 div?
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(); } });