当前位置:   article > 正文

前端 css 经典:transition 过渡和 animation 动画_css animation 低端机

css animation 低端机

1. transition 过渡动画

给 dom 元素添加变形、变形的过程添加动画

  1. /* 元素变形种类 2D */
  2. /* 移动:translate(100px, 100px) 水平和垂直方向各移动100px。*/
  3. /* 旋转:rotate(60deg) 顺时针旋转60度 */
  4. /* 缩放:scale(0.5) 缩小一半, 1表示不表,大于1是放大 */
  5. /* 倾斜:skew(30deg, 30deg) 水平和垂直方向和顺时针倾斜30度。*/
  6. .active {
  7. transform: translate(100px, 100px) rotate(60deg) scale(0.5) skew(30deg, 30deg);
  8. /* transition: 过渡的属性 完成时间(s) 运动曲线 延迟时间 */
  9. /* 运动曲线: ease:减速、linear:匀速、ease-in:加速、ease-out:减速、*/
  10. /* ease-in-out:先加后减、cubic-bezier(n,n,n,n):三次贝塞尔定义 */
  11. transition: all 3s linear 0s;
  12. }
  13. /* 元素变形种类 3D */
  14. /* 3D 变形首先要给变形DOM一个父级DOM,并且父级DOM设置 perspective, 添加透视效果*/
  15. /* 旋转:rotateX(), rotateY(),rotateZ() 围绕X,Y,Z轴旋转 */
  16. /* 移动:translateX(),translateY(),translateZ() 延X,Y,Z轴平移*/
  17. .father {
  18. perspective: 500px;
  19. }

2. animation 动画

  1. /* 定义动画 */
  2. @keyframes demo {
  3. 0% {
  4. transform: translate(0px);
  5. }
  6. 100% {
  7. transform: translate(200px);
  8. }
  9. }
  10. /* or */
  11. @keyframes demo {
  12. from {
  13. transform: translate(0px);
  14. }
  15. to {
  16. transform: translate(200px);
  17. }
  18. }
  19. /* 使用动画 */
  20. div {
  21. /* 简写 */
  22. /* animation:动画名称 动画时长(有这两个即可以完成动画,其它未设置,有默认值) */
  23. animation: demo 2s;
  24. /* animation:动画名称 动画时长 动画运动速度 延迟时间 执行次数 往返动画 */
  25. animation: demo 2s linear 0 infinite;
  26. /* 详写 */
  27. /* 动画名称 */
  28. animation-name: demo;
  29. /* 持续时间 */
  30. animation-duration: 1s;
  31. /* 运动曲线 和 transition 的运动曲线一样 */
  32. animation-timing-function: linear;
  33. /* 何时开始 */
  34. animation-delay: 0;
  35. /* 重复次数 iteration 重复的 count 次数 infinite无限 */
  36. animation-iteration-count: infinite;
  37. /* 是否反方向播放 默认normal 想反方向就写alternate*/
  38. animation-direction: alternate;
  39. /* 动画结束后状态默认backwards 回到起始状态 我们可以让他停留在结束状态forwards */
  40. animation-fill-mode: forwards;
  41. }

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

闽ICP备14008679号