点击图标换一换
2022-06-05 本文已影响0人
禾苗种树
image.png
- 原理,使用定时器,定时清除类名,定时器执行时间和动画执行时间要相等,才能做到可以无间隔点击
- 知识点
1s = 1000ms
0.2s = 200ms - 定时器写法
时间写后面
setTimeout(function(){
$('.btn').children('img').removeClass('hyh_activ');
},300)
image.png
setTimeout(function(){
$('.btn').children('img').removeClass('hyh_activ');
},300)