js+css 动效+1的效果

点击数值 +1 的动效

1084318-20190711153717091-213921556.png

vue

data:{
    timer: null,plus:''// 次数
}
method:{
    animate(plus) {
          var _this = this;
          clearInterval(_this.timer);
          _this.timer = setInterval(function () {
               plus--;
               if (plus <= 0) {
                    clearInterval(_this.timer)
               }
               var $i = $("+1");
                $('.popularity-values').append($i);
                $i.animate({
                    "top": '-1.1rem',
                    "right": '-0.9rem',
                    // "top": '-55px',
                    // "right": '-45px',
                    "opacity": 0.1,
                    "fontSize": '0.46rem'
                }, 1800, function () {
                   $i.remove();
               });
           }, 800)
       }
}
jQ 点击 +1 动效
jQuery(document).ready(function ($) {
    $("html,body").click(function (e) {
        // var n = Math.round(Math.random() * 100);
    var n = 1;
    var $i = $("").text("+" + n);
    var x = e.pageX,
        y = e.pageY;
    $i.css({
        "z-index": 99999,
          "top": y - 20,
          "left": x,
          "position": "absolute",
           "color": "#E94F06"
    });
    $("body").append($i);
        $i.animate({
             "top": y - 180,
             "opacity": 0
        }, 1500, function () {
         $i.remove();
      });
      e.stopPropagation();
    });
});

转载于:https://www.cnblogs.com/lisaShare/p/11170374.html

你可能感兴趣的:(js+css 动效+1的效果)