微信小程序-css动画

2018-10-10  本文已影响1066人  木马不在转

一:css属性介绍

1、 animation:动画属性。详细的可查看官方APIwx.createAnimation(OBJECT)
2、 animation-deley:设置动画在启动前的延迟间隔。
3、animation-direction: 取值:alternate,alternate-reverse,normal,reverse。指定是否应该轮流反向播放动画。
4、 animation-duration: 动画指定需要多少秒或毫秒完成。
5、 animation-fill-mode: 取值:backwards,both,forwards,none。规定当动画不播放时(当动画完成时,或当动画有一个延迟未开始播放时),要应用到元素的样式。
6、 animation-iteration-count:定义动画播放的次数。取值:infinite(永远播放),或者一个数字。
7、 animation-name:属性为 @keyframes 动画指定名称。
8、animation-play-state:取值:
9、animation-timing-function: 指定动画将如何完成一个周期,样式如下:
10、transform: 形变动画,样式如下

二:css动画实现

1.wxml:


布局

2.wxss
(1)属性绑定:

.view {
  width: 200rpx;
  height: 200rpx;
  background-color: red;
  margin-left: 100rpx;
  margin-top: 100rpx;
  /** 第一种写法**/
  animation-name: viewlinear;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  /** 第二种写法**/
  animation: viewlinear 2s linear infinite;
}

(2)动画实现:

@keyframes viewlinear {
  
  /** 第一种写法**/
  0% {
    background-color: red;
  }
  50% {
    background-color: orange;
  }
  100% {
    background-color: yellow;
  }


  /** 第二种写法**//*开始转的角度*/
  from {
    background-color: orange;
  }/*结束的角度*/

  to {
    background-color: red;
  }
}

动画效果:


效果.gif
上一篇下一篇

猜你喜欢

热点阅读