いくつかのセクションに分割された Web ページをスクロールできるページ arroys の中央に 2 つのスティック (UP と DOWN) を追加しようとしています。したがって、矢印は常に中央にあり、2 番目のセクションから最後のセクションに表示され、ページを上下にスクロールできます。
現在、ウェブページのトップに移動するボタンがあります
.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>