我试图在页面中间添加两个粘贴(向上和向下),可以滚动分成几个部分的网页。因此,箭头总是在中间出现在第二部分到最后一部分,并让页面向上或向下滚动。
目前我有一个按钮,可以将我带到网页的顶部
.content-wrap section .back-to-top {
display: block;
position: absolute;
bottom: -65px;
right: 10px;
height: 36px;
width: 36px;
background: url(http://www.caddet-re.org/assets/images/Arrow_Circle_Up.gif);
text-indent: -9999px;
z-index: 2;
}
<a class="back-to-top" href="#main">Back to Top</a>
给我:
部分的结构是:
<div class="content-wrap">
<section id="main">
<!--content-->
</section>
<section id="portfolio">
<!--content-->
</section>
...
</div>
答案 0 :(得分:1)
我已经改变了你的代码:
http://jsfiddle.net/BorisDutkin1982/ZapgY/1/
我希望这就是你的意思。您也可以添加“向下”按钮:
只要确保它在“箭头 - 容器”内,并且css参数是
与“向上”按钮相同,但top:45%
除外,请将其更改为bottom:45%
。
如果您只想在第二部分后显示箭头,则需要添加
“滚动”的事件监听器,并检查用户滚动页面的位置。
您可以使用scrollTop()
方法执行此操作...
例如代码:
$(document).ready(
function(){
$("body").live(
"scroll",
function(){
if($("body").scrollTop == NUMBER_OF_PIXELS_FROM_TOP_OF_THE_PAGE){
$("arrow").show();
}
}
);
}
);
解释:我添加了滚动动作的监听器到“body”。每当用户滚动主体/页面时,如果距页面顶部的距离是第二部分的位置 - 显示arroa