我正在使用jquery parallax创建一个网站。我有三个div分别对应三个不同的页面。我还有背景(在滚动页面背景仍然是静止的)。给定位置固定的第一页我有徽标图像。因此,滚动徽标仍然存在。这对第二页来说没问题。对于第三页,我需要徽标与div一起向上移动。我该怎么做?在jquery parallax
中是否有任何功能后台css:
body{
background:url(images/new.jpeg);
background-repeat:no-repeat;
background-size:100% 100%;
background-attachment:fixed;
}
标志:
<div class="logocenter">
<img src="images/stampedlogo.png" style="width: 200px;height: 200px;position: fixed;" alt="logo"/>
</div>
请参阅my site
请帮忙, 感谢
答案 0 :(得分:1)
您可以使用以下代码:
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() > $(document).height() - 500) {
$('.logocenter').fadeOut();
}
});