如何使它可以一直被點都有效果?twitter heart
主要顯示
<span class="notify-cart-heart"></span>
.notify-cart-heart{
display: none;
}
後端溝通用
$('.xxx').load('/models/notify?type=cart', function(data){
if(data!=''){
$('.notify-cart-heart').css('display','block').addClass('notify-cart-heart-done');
}else{
$('.notify-cart-heart').css('display','none');
}
});
css
.notify-cart-heart {
cursor: pointer;
height: 30px;
width: 30px;
background-image:url( '../../images/twitter_heart.png');
background-position: left;
background-repeat:no-repeat;
background-size:2900%;
}
.notify-cart-heart-done{
background-position:right;
}
.is_animating {
animation: heart-burst .8s steps(28) 1;
}
@keyframes heart-burst {
from {background-position:left;}
to { background-position:right;}
}
點擊按鈕後觸及 event
// removeClass('is_animating notify-cart-heart-done');
$('.notify-cart-heart').addClass('is_animating notify-cart-heart-done');
../../images/twitter_heart.png
我現在的問題是
第一次點下去時,會有效果出現
但我要的是:連續點好幾次都會有效果
但現在他就會一直停在 notify-cart-heart-done 的狀態,我有試過移除 removeClass('is_animating notify-cart-heart-done')
它,但還是沒用?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原理见我的另一个回答.