网友回复
两种方式
第一、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%