点赞特效

html

<div class="detail-praise article-praise">
      <a href="javascript:void(0)" id="read_praise" data-id="<%= @article.id %>"><%= icon 'thumbs-o-up' %> <span><%= @article.praise %></span> </a>
    </div>


css: 

.detail-praise {
  background: $white;
  margin-bottom: $xx-large-gutter-size;
  padding-bottom: $xx-large-gutter-size;
  position: relative;
  #art_animate {
    position: absolute;
    left: 45%;
    bottom: 20px;
    font-size: 32px;
  }
}


js:

// 点赞特效
  const praiseAnimate = () => {
    
    const initX = 100
    const initY = 500
    // (Math.random() * (maxWidth - 20 + 1) | 0) + 20
    const rule = (initX - initY) + 1
    const leftRand = (Math.random() * rule) + initY
    const clR = Math.floor(Math.random() * 255)
    const clG = Math.floor(Math.random() * 255)
    const clB = Math.floor(Math.random() * 255)
    const animateDiv = '<div id="art_animate"><i class="fa fa-thumbs-o-up"></i></div>'
    $('.article-praise').append(animateDiv)
    $('.article-praise #art_animate').css('color', `rgba(${clR}, ${clG}, ${clB}, 1)`)
    $('.article-praise #art_animate').animate({
      bottom: '500px',
      opacity: '0',
      left: leftRand,
    }, 3000)
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值