简单的css文字动画效果
程序员文章站
2022-03-18 17:52:31
实现效果实现代码html
welcome
jb51<...
实现效果
实现代码
html
<div id=container> welcome <div id=flip> <div><div>jb51</div></div> <div><div></div></div> <div><div>欢迎访问</div></div> </div> </div> <p>a css3 animation demo</p>
css
@import url('https://fonts.googleapis.com/css?family=roboto:700'); body { margin:0px; font-family:'roboto'; text-align:center; } #container { color:#999; text-transform: uppercase; font-size:36px; font-weight:bold; padding-top:200px; position:fixed; width:100%; bottom:45%; display:block; } #flip { height:50px; overflow:hidden; } #flip > div > div { color:#fff; padding:4px 12px; height:45px; margin-bottom:45px; display:inline-block; } #flip div:first-child { animation: show 5s linear infinite; } #flip div div { background:#42c58a; } #flip div:first-child div { background:#4ec7f3; } #flip div:last-child div { background:#dc143c; } @keyframes show { 0% {margin-top:-270px;} 5% {margin-top:-180px;} 33% {margin-top:-180px;} 38% {margin-top:-90px;} 66% {margin-top:-90px;} 71% {margin-top:0px;} 99.99% {margin-top:0px;} 100% {margin-top:-270px;} } p { position:fixed; width:100%; bottom:30px; font-size:12px; color:#999; margin-top:200px; }
以上就是简单的css文字动画效果的详细内容,更多关于css文字动画效果的资料请关注其它相关文章!
推荐阅读
-
如何利用html和css来实现注册表单的简单实例
-
关于CSS项目Minimum Page的简单介绍
-
keynote怎么制作飞入的动画效果?
-
css代码压缩后的效果有多大?_html/css_WEB-ITnose
-
ps怎么制作图片拼接效果的字体? ps拼贴文字特效的设计方法
-
这里的大括号怎么看都没发现图片,又没发现文字{},到底怎么弄出来的呢?_html/css_WEB-ITnose
-
android重写webview长按时选择文字然后点击搜索按钮的事件,默认是chrome接受点击事件,现在跳转到360搜索页面_html/css_WEB-ITnose
-
利用CSS3 animation动画属性实现轮播图效果的方法详解
-
3dmax怎么制作麻绳效果的文字?
-
66种基于animate.css的CSS消息提示动画效果_html/css_WEB-ITnose