我正在尝试在页面中间添加两个粘贴(向上和向下),可以滚动分为某些部分的网页。所以箭头总是在中间出现在第二节到最后一节,让页面向上或向下滚动。
目前我有一个按钮可以将我带到网页顶部
.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>