This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
Releases: dunizb/SMmuiscPlay
Releases · dunizb/SMmuiscPlay
0.0.3
0.0.2
音乐播放图标使用方式变更
升级 0.0.1 => 0.0.2
音乐播放图标
- 默认使用SVG格式
- 需要自己设置图标的旋转动画
样例,可直接拷贝到页面:
@keyframes muiscIconRotate{
from{transform: rotate(0deg);}
to{transform: rotate(360deg);}
}
然后添加animaClass
属性:
SMmuiscPlay({
el: "app",
audioUrl: "muisc/xxxx.mp3",
animaClass: "muiscIconRotate"
});