gpt4 book ai didi

css - 如何像 Droplr 一样使用 CSS/jQuery 淡入/淡出多个文本?

转载 作者:技术小花猫 更新时间:2023-10-29 10:19:47 25 4
gpt4 key购买 nike

当 CSS3 关键帧开始流行时,我在一个网站上看到了这种类型的动画,但找不到它,也无法使用 CSS 或 jQuery 复制它,我认为你们中的一些人可以在这里帮助。

我已将我希望实现的目标制作成动画,并将其嵌入下方。我相信这可以使用新的 CSS3 关键帧或 jQuery 的 .animate(); 进行编码。特征。我不知道。我已经尝试了我所知道的一切,但都是徒劳的。

这是我想要的 GIF 动画:

GIF animation where the text "I am" is static and the word "invincible" fades out, the word "awesome" fades in, the word "awesome" fades back out, and the word "invincible" fades back in, in an infinite loop.

我刚注意到,http://droplr.com/在他们的主页上使用非常相似的过渡,但有一些滑动效果。出现的数据(词)都是随机的,一直都是。我想知道这怎么可能!

最佳答案

DEMO

纯 css 的可能解决方案!

@-webkit-keyframes fade-in{
from{
opacity:1;
top:0px;
}
to{
opacity:0;
top:-5px;
}
}
.text-animated-one{
display:inline;
position:relative;
top:0px;
-webkit-animation:fade-in 1s infinite;

}
.text-animated-two{
opacity:0;
display:inline;
position:relative;
margin-left:-56px;
-webkit-animation:fade-in 1s infinite;
-webkit-animation-delay:0.5s;
}

.aggettivi{
display:inline;
width:100px;
height:100px;
}

关于css - 如何像 Droplr 一样使用 CSS/jQuery 淡入/淡出多个文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17254442/

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