jQueryは点賛効果を実現

2249 ワード

会社のプロジェクトはよく「いいね」の効果を使います.HTML 5ページなら、直接jQueryで実現できます.ネット上でもいくつかの異なる解決方法が見つかります.私はここでその一つを引用しました.コードが簡潔で分かりやすいと思います.住所は以下の通りです.JQUERY「いいね」+1アニメーション効果_点賛数字プラス1拡大アニメーション特効
以下は別の2種類ですが、参考にしてみてください.jqueryプラグインの点賛"+1"特効jQuery点賛プラグインの"+1"特効
以下は私が最初のコードを使って、親測が役に立ちます.
(function ($) {
    $.extend({
        tipsBox: function (options) {
            options = $.extend({
                obj: null,  //jq  ,    html     
                str: "+1",  //   ,      "
                startSize: "14px",  //         
                endSize: "38px",    //         
                interval: 600,  //      
                color: "#fbab00",    //    
                weight: "bold", //  
                callback: function () {
                }
            }, options);
            $("body").append('' + options.str + '');
            var box = $(".num");
            var left = (options.obj.offset().left + options.obj.width() / 2) - 10;
            var top = options.obj.offset().top + options.obj.height() - 100;
            box.css({
                "position": "absolute",
                "left": left + "px",
                "top": top + "px",
                "z-index": 9999,
                "font-size": options.startSize,
                "line-height": options.endSize,
                "color": options.color,
                "font-weight": options.weight
            });
            box.animate({
                "font-size": options.endSize,
                "opacity": "0",
                "top": top - parseInt(options.endSize) + "px"
            }, options.interval, function () {
                box.remove();
                options.callback();
            });
        }
    });
})(jQuery);
$(function () {
    $(".like_btn").click(function () {
        $.tipsBox({
            obj: $(this),
            str: "+1",
            callback: function () {
                // alert("   ");
            }
        });
    });
});