首頁 > web前端 > js教程 > 主體

jquery插件tooltipv頂部淡入淡出效果使用範例_jquery

WBOY
發布: 2016-05-16 17:10:41
原創
1361 人瀏覽過

jquery插件tooltipv頂部淡入淡出效果使用範例_jquery
 

内部使用


複製程式碼程式碼如下:


   
       
   

   
   


   
   
   
   
   
        $("#tooltipContainer").tooltip();  // 初始化
        function tg1() {
            $("#tooltipContainer")。 function tg2() {
            $("#tooltipContainer").tooltip("alert", "根據您的使用和需求的不同...");
        }
        function tg3() {
            $("#tooltipContainer").tooltip("");
        }

CSS



複製程式碼

程式碼如下:

{   :背景大小; 10像素;
}



jquery.tooltip插件js程式碼





複製程式碼


程式碼如下:

(function ($) {
    var methods = {
        init: function (options) {
            return this.each(function () {

                var $this = $(this);
                var settings = $this.data('tooltip');
                if (typeof (settings) == 'undefined') {
                    var defaults = {
                        infoCss: 'tooltip_info',
                        alertCss: 'tooltip_alert',
                        disappearTime: 1000
                    }
                    settings = $.extend({}, defaults, options);
                    $this.data('tooltip', settings);
                } else {
                    settings = $.extend({}, settings, options);
                    $this.data('tooltip', settings);
                }
                $tooltip = $("#tooltip");
                $tooltip.hide();
                if ($tooltip.length == 0) {
                    $tooltip = $("

");
                    $('body').prepend($tooltip);
                    $tooltip.hide();
                }
            })
        },
        info: function (options) {
            return this.each(function () {
                var $this = $(this);
                var setting = $this.data('tooltip');

                clearTimeout($this.data("autoDisappearHandle"));
                $tooltip.html(options);
                $tooltip.removeClass(setting.alertCss).addClass(setting.infoCss);
                $tooltip.fadeIn();
                var hideTooltip = function () {
                    $tooltip.fadeOut();
                }
                $this.data("autoDisappearHandle", setTimeout(hideTooltip, setting.disappearTime));
            })
        },
        alert: function (options) {
            return this.each(function () {
                var $this = $(this);
                var setting = $this.data('tooltip');

                clearTimeout($this.data("autoDisappearHandle"));
                $tooltip.html(options);
                $tooltip.removeClass(setting.infoCss).addClass(setting.alertCss);
                $tooltip.fadeIn();
                var hideTooltip = function () {
                    $tooltip.fadeOut();
                }
                $this.data("autoDisappearHandle", setTimeout(hideTooltip, setting.disappearTime));
            })
        },
        hide: function () {
            return this.each(function () {
                var $this = $(this);
                clearTimeout($this.data("autoDisappearHandle"));
                $tooltip.fadeOut();
            })
        }
    };

    $.fn.tooltip = function () {
        var method = argument[0];
    =methods[method];
            argument = Array.prototype.slice.call(arguments, 1);
        } else if (typeof (method) == 'object' || !method     } else {
            $.error('Method ' method '在jQuery.tooltip 上不存在');
      
        return method.apply(this, argument);

    }

})(jQuery);

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!