小程序播放器专辑界面旋转动画
- 二话不说看效果
首先是CSS样式
.music_on{
animation: audio-rotate 8s linear infinite;
}
.audio_control{
display: flex;
flex-direction: row;
justify-content:space-around;
}
.audio_control button{
width:200rpx;
height:80rpx;
line-height:80rpx;
}
/* 旋转动画 */
@keyframes audio-rotate {
0% {
transform: rotateZ(0deg);
}
100% {
transform: rotateZ(360deg);
}
}
之后是wxml页面调用css动画
这里有个判定
running 和 paused
主要看你自己定义的暂停和播放的函数名,这是我自定义的代码
最后这样就完成了