主要是用CSS的animation来实现了一个无限缩放的效果。
一、HTML
<view class="anima"></view>
二、CSS
.anima{
width: 151rpx;
height: 153rpx;
background: url(https://4bd2d4613.png) no-repeat 0 0;
background-size: 100% 100%;
animation: firstdiv 2s linear 2s infinite alternate;
}
@keyframes firstdiv{
0%{
transform: scale(1);
}
25%{
transform: scale(0.9);
}
50%{
transform: scale(0.8);
}
75%{
transform: scale(0.9);
}
100%{
transform: scale(1);
}
}