当前位置:   article > 正文

基于css实现动画效果_css 成功动画

css 成功动画

 介绍

        本文将会基于css,实现各种动画效果,接下来会从简单几个例子入手。

案例

三颗球

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>React App</title>
  6. <style>
  7. .circle{
  8. width: 100px;
  9. height: 100px;
  10. border-radius: 50%; // 圆形
  11. background-color: red;
  12. position: absolute; // 绝对定位
  13. transform-origin: right center; // 中心轴
  14. }
  15. @keyframes rotate {
  16. 0% {
  17. transform: rotate(0deg);
  18. }
  19. 100% {
  20. transform: rotate(360deg); // 旋转
  21. }
  22. }
  23. .circle:nth-child(1){
  24. animation: rotate 3s linear infinite;
  25. }
  26. .circle:nth-child(2){
  27. animation: rotate 3s linear 1s infinite;
  28. }
  29. .circle:nth-child(3){
  30. animation: rotate 3s linear 2s infinite;
  31. }
  32. .parent{
  33. position: relative;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div class="parent">
  39. <div class="circle"></div>
  40. <div class="circle"></div>
  41. <div class="circle"></div>
  42. </div>
  43. </body>
  44. </html>

效果

旋转小球

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>React App</title>
  6. <style>
  7. .box{
  8. position: relative;
  9. background: #11445e;
  10. border: 10px solid #00d9ff;
  11. border-radius: 50%;
  12. width: 100px;
  13. height: 100px;
  14. animation: round 3s linear infinite ;
  15. }
  16. .box:before{
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. content:'';
  21. width: 20px;
  22. height: 20px;
  23. background: rgb(255,132,0);
  24. border-radius: 50%;
  25. }
  26. @keyframes round {
  27. 0%{
  28. rotate: 0deg
  29. }
  30. 100%{
  31. rotate: 360deg
  32. }
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div class="box" style="margin-left: 100px; margin-top: 100px">
  38. </div>
  39. </body>
  40. </html>

效果展示

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/266264?site
推荐阅读
相关标签
  

闽ICP备14008679号