gpt4 book ai didi

html - 向下移动/从顶部平移时淡入元素的方法?

转载 作者:行者123 更新时间:2023-11-28 00:45:33 25 4
gpt4 key购买 nike

我正在尝试找出一种方法,让特定网页的第一个标题和段落在淡入的同时从顶部同时转换到位。

我研究过使用@keyframes,这绝对是解决方案。但是话虽如此,我一直无法找到一种在不指定要翻译的设置距离的情况下翻译元素的方法。相反,我只是想将顶部的元素转换到它们当前的位置(或者它们本来应该在的位置)。

这是我的网站供引用:http://thefloodplains.com/About.html .我目前有第二部分淡入(没有翻译),但我希望顶部部分从顶部淡入。

基本上我想做的是:https://www.w3schools.com/CSSref/tryit.asp?filename=trycss3_keyframes ,但没有指定数量的像素进行翻译 - 我只是想将其从顶部翻译到当前位置。

这是另一个类似的例子,但我不想要淡出效果(第一个):https://codepen.io/kianoshp/pen/PPeWzb .

@keyframes topFadeOut {
0% {
position: absolute;
top: -3rem;
opacity: 0;
}

75% {
position: absolute;
top: 25%;
opacity: 1;
}

100% {
opacity: 0;
}
}

我们将不胜感激任何帮助。祝你有美好的一天!

最佳答案

.box {
height: 20rem;
margin: 0 auto;
overflow: hidden;
position: relative;
}

@keyframes topFadeOut {
0% {
position: absolute;
top: -3rem;
opacity: 0;
}

100% {
position: absolute;
top: 25%;
opacity: 1;
}
}

h {
font-size: 45px;
color: #00A5D1;
font-family: 'Gentium Basic', Verdana, 'Slabo 27px', 'Vollkorn', serif;
position: absolute;
top: 5rem;
opacity: 1;
left: 0;
right: 0;
display: flex;
justify-content: center;
animation-name: topFadeOut;
animation-duration: 5s;
}
  <section class="box">
<h>The Floodplains</h>
</section>

关于html - 向下移动/从顶部平移时淡入元素的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50783052/

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