经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » HTML/CSS » CSS » 查看文章
简单的css文字动画效果_CSS教程_CSS
来源:jb51  时间:2021/4/12 9:35:29  对本文有异议

实现效果

实现代码

html

  1. <div id=container>
  2. Welcome
  3. <div id=flip>
  4. <div><div>jb51</div></div>
  5. <div><div>w3xue</div></div>
  6. <div><div>欢迎访问</div></div>
  7. </div>
  8. </div>
  9.  
  10. <p>a css3 animation demo</p>

css

  1. @import url('https://fonts.googleapis.com/css?family=Roboto:700');
  2.  
  3. body {
  4. margin:0px;
  5. font-family:'Roboto';
  6. text-align:center;
  7. }
  8.  
  9. #container {
  10. color:#999;
  11. text-transform: uppercase;
  12. font-size:36px;
  13. font-weight:bold;
  14. padding-top:200px;
  15. position:fixed;
  16. width:100%;
  17. bottom:45%;
  18. display:block;
  19. }
  20.  
  21. #flip {
  22. height:50px;
  23. overflow:hidden;
  24. }
  25.  
  26. #flip > div > div {
  27. color:#fff;
  28. padding:4px 12px;
  29. height:45px;
  30. margin-bottom:45px;
  31. display:inline-block;
  32. }
  33.  
  34. #flip div:first-child {
  35. animation: show 5s linear infinite;
  36. }
  37.  
  38. #flip div div {
  39. background:#42c58a;
  40. }
  41. #flip div:first-child div {
  42. background:#4ec7f3;
  43. }
  44. #flip div:last-child div {
  45. background:#DC143C;
  46. }
  47.  
  48. @keyframes show {
  49. 0% {margin-top:-270px;}
  50. 5% {margin-top:-180px;}
  51. 33% {margin-top:-180px;}
  52. 38% {margin-top:-90px;}
  53. 66% {margin-top:-90px;}
  54. 71% {margin-top:0px;}
  55. 99.99% {margin-top:0px;}
  56. 100% {margin-top:-270px;}
  57. }
  58.  
  59. p {
  60. position:fixed;
  61. width:100%;
  62. bottom:30px;
  63. font-size:12px;
  64. color:#999;
  65. margin-top:200px;
  66. }

以上就是简单的css文字动画效果的详细内容,更多关于css文字动画效果的资料请关注w3xue其它相关文章!

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号