这是我想要实现的目标:
我对CSS,HTML和JS完全陌生,但是已经成功完成了步骤1和步骤2。
要尝试实现第3步,我使用在https://stackoverflow.com/a/6677069处找到的以下代码:
$("#top").click(function() {
$([document.documentElement, document.body]).animate({
scrollTop: $("#bottom").offset().top
}, 3000);
});
它将为最后设置的持续时间(在上面的示例中为3000ms / 3秒)创建平滑的滚动。
在这里起作用:
$("#top").click(function() {
$([document.documentElement, document.body]).animate({
scrollTop: $("#bottom").offset().top
}, 3000);
});
#stuff {
text-align: center;
height: 30vh;
margin: 20vh 0;
font-size: 5rem;
}
#top {
cursor: pointer;
text-align: center;
height: 1vh;
font-size: 5rem;
}
#star {
text-align: center;
font-size: 100px;
line-height: 500px;
color: #ddd;
height: 100vh;
}
#bottom {
text-align: center;
font-size: 100px;
color: green;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="stuff">
Click arrow to scroll down</div>
<div id="top">˅</div>
<div id="star">☆</div>
<div id="bottom">This is the bottom</div>
我想要修改此代码或使用新的代码,这些代码将在点击发生后经过一定的秒数跳到div(而不是平滑滚动)。
请帮助。