如何使它可以一直被點都有效果?twitter heart

发布于 2022-09-07 19:48:37 字数 1372 浏览 16 评论 0

主要顯示

<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
clipboard.png

我現在的問題是
第一次點下去時,會有效果出現
但我要的是:連續點好幾次都會有效果
但現在他就會一直停在 notify-cart-heart-done 的狀態,我有試過移除 removeClass('is_animating notify-cart-heart-done') 它,但還是沒用?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

献世佛 2022-09-14 19:48:37
$('.notify-cart-heart').removeClass('is_animating notify-cart-heart-done');

// 触发 reflow
$('.notify-cart-heart')[0].offsetWidth;

$('.notify-cart-heart').addClass('is_animating notify-cart-heart-done');

原理见我的另一个回答.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文