+
95
-

微信小程序动画如何实现?

微信小程序动画如何实现?

网友回复

+
15
-

两种方式

第一、css3实现

wxm代码

 <view class="test"  >动画</view>

wxss代码

.test{
  margin: 150px auto;
  color: white;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size:22px;
  background-color: red;
  text-align: center;
  -webkit-animation-name: 'ripple';
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
}

@keyframes ripple {
 ...

点击查看剩余70%

我知道答案,我要回答