gpt4 book ai didi

html - 如何使用 Html/Css 添加动画向下滚动按钮?

转载 作者:行者123 更新时间:2023-12-04 07:13:21 25 4
gpt4 key购买 nike

我正在尝试制作一个平滑的滚动程序,它可以工作,但我想要一个有点动画的按钮。
这是我的代码:

html {
scroll-behavior: smooth;
}

#section1 {
height: 800px;
background-color: red;
}

#section2 {
height: 800px;
background-color: blue;
}
<h1>Smooth Scroll</h1>

<div class="main" id="section1">
<h1>Section 1</h1>
<a href="#section2">Section 2 </a>
</div>

<div class="main" id="section2">
<h1>Section 2</h1>
<a href="#section1">Section 1</a>
</div>

我想要这样的东西 -
The image
有没有办法只使用 HTML 和 CSS 来做到这一点?

最佳答案

所以首先,我把这个:

<a href="#section2">Section 2 </a>
并把它变成了这样:
<div class="scrollButton">
<p class="scrollIcon">></p>
<a href="#section2">Section 2 </a>
</div>
然后我创建了图标(它是一个旋转的 >transform: rotate(90deg); )并将文本放在它下面。然后我使用 CSS 关键帧为按钮设置动画
您也可以使用普通图标,但不要忘记删除 transform: rotate(90deg); .

这是代码:

<!DOCTYPE html>

<html>
<head>
<style>
/* Styles needed */

html {
scroll-behavior: smooth;
}

a {
color: #fff;
text-decoration: none;
}

#section1 {
height: 800px;
background-color: red;
}

#section2 {
height: 800px;
background-color: blue;
}

.scrollButton {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.scrollIcon {
transform: rotate(90deg);
display: inline-block;
position: relative;
animation: 2.5s scrollIcon infinite;
color: #fff;
}

@keyframes scrollIcon {
0% {
opacity: 0;
top: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
top: 15px;
}
}

</style>
</head>

<body>
<h1>Smooth Scroll</h1>

<div class="main" id="section1">
<h1>Section 1</h1>

<div class="scrollButton">
<p class="scrollIcon">></p>
<a href="#section2">Section 2 </a>
</div>

</div>

<div class="main" id="section2">
<h1>Section 2</h1>
<div class="scrollButton">
<p class="scrollIcon">></p>
<a href="#section1">Section 2 </a>
</div>
</div>
</body>
</html>

关于html - 如何使用 Html/Css 添加动画向下滚动按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68938651/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com