`
阅读更多
// tipsy, facebook style tooltips for jquery
// version 1.0.0a
// (c) 2008-2010 jason frame [jason@onehackoranother.com]
// released under the MIT license

(function($) {
    
    function Tipsy(element, options) {
        this.$element = $(element);
        this.options = options;
        this.enabled = true;
        this.fixTitle();
    }
    
    Tipsy.prototype = {
        show: function() {
            var title = this.getTitle();
            if (title && this.enabled) {
                var $tip = this.tip();
                
                $tip.find('.tipsy-inner')[this.options.html ? 'html' : 'text'](title);
                $tip[0].className = 'tipsy'; // reset classname in case of dynamic gravity
                $tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body);
                
                var pos = $.extend({}, this.$element.offset(), {
                    width: this.$element[0].offsetWidth,
                    height: this.$element[0].offsetHeight
                });
                
                var actualWidth = $tip[0].offsetWidth, actualHeight = $tip[0].offsetHeight;
                var gravity = (typeof this.options.gravity == 'function')
                                ? this.options.gravity.call(this.$element[0])
                                : this.options.gravity;
                
                var tp;
                switch (gravity.charAt(0)) {
                    case 'n':
                        tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2};
                        break;
                    case 's':
                        tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2};
                        break;
                    case 'e':
                        tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset};
                        break;
                    case 'w':
                        tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset};
                        break;
                }
                
                if (gravity.length == 2) {
                    if (gravity.charAt(1) == 'w') {
                        tp.left = pos.left + pos.width / 2 - 15;
                    } else {
                        tp.left = pos.left + pos.width / 2 - actualWidth + 15;
                    }
                }
                
                $tip.css(tp).addClass('tipsy-' + gravity);
                
                if (this.options.fade) {
                    $tip.stop().css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: this.options.opacity});
                } else {
                    $tip.css({visibility: 'visible', opacity: this.options.opacity});
                }
            }
        },
        
        hide: function() {
            if (this.options.fade) {
                this.tip().stop().fadeOut(function() { $(this).remove(); });
            } else {
                this.tip().remove();
            }
        },
        
        fixTitle: function() {
            var $e = this.$element;
            if ($e.attr('title') || typeof($e.attr('original-title')) != 'string') {
                $e.attr('original-title', $e.attr('title') || '').removeAttr('title');
            }
        },
        
        getTitle: function() {
            var title, $e = this.$element, o = this.options;
            this.fixTitle();
            var title, o = this.options;
            if (typeof o.title == 'string') {
                title = $e.attr(o.title == 'title' ? 'original-title' : o.title);
            } else if (typeof o.title == 'function') {
                title = o.title.call($e[0]);
            }
            title = ('' + title).replace(/(^\s*|\s*$)/, "");
            return title || o.fallback;
        },
        
        tip: function() {
            if (!this.$tip) {
                this.$tip = $('<div class="tipsy"></div>').html('<div class="tipsy-arrow"></div><div class="tipsy-inner"></div>');
            }
            return this.$tip;
        },
        
        validate: function() {
            if (!this.$element[0].parentNode) {
                this.hide();
                this.$element = null;
                this.options = null;
            }
        },
        
        enable: function() { this.enabled = true; },
        disable: function() { this.enabled = false; },
        toggleEnabled: function() { this.enabled = !this.enabled; }
    };
    
    $.fn.tipsy = function(options) {
        
        if (options === true) {
            return this.data('tipsy');
        } else if (typeof options == 'string') {
            var tipsy = this.data('tipsy');
            if (tipsy) tipsy[options]();
            return this;
        }
        
        options = $.extend({}, $.fn.tipsy.defaults, options);
        
        function get(ele) {
            var tipsy = $.data(ele, 'tipsy');
            if (!tipsy) {
                tipsy = new Tipsy(ele, $.fn.tipsy.elementOptions(ele, options));
                $.data(ele, 'tipsy', tipsy);
            }
            return tipsy;
        }
        
        function enter() {
            var tipsy = get(this);
            tipsy.hoverState = 'in';
            if (options.delayIn == 0) {
                tipsy.show();
            } else {
                tipsy.fixTitle();
                setTimeout(function() { if (tipsy.hoverState == 'in') tipsy.show(); }, options.delayIn);
            }
        };
        
        function leave() {
            var tipsy = get(this);
            tipsy.hoverState = 'out';
            if (options.delayOut == 0) {
                tipsy.hide();
            } else {
                setTimeout(function() { if (tipsy.hoverState == 'out') tipsy.hide(); }, options.delayOut);
            }
        };
        
        if (!options.live) this.each(function() { get(this); });
        
        if (options.trigger != 'manual') {
            var binder   = options.live ? 'live' : 'bind',
                eventIn  = options.trigger == 'hover' ? 'mouseenter' : 'focus',
                eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur';
            this[binder](eventIn, enter)[binder](eventOut, leave);
        }
        
        return this;
        
    };
    
    $.fn.tipsy.defaults = {
        delayIn: 0,
        delayOut: 0,
        fade: false,
        fallback: '',
        gravity: 'n',
        html: false,
        live: false,
        offset: 0,
        opacity: 0.8,
        title: 'title',
        trigger: 'hover'
    };
    
    // Overwrite this method to provide options on a per-element basis.
    // For example, you could store the gravity in a 'tipsy-gravity' attribute:
    // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' });
    // (remember - do not modify 'options' in place!)
    $.fn.tipsy.elementOptions = function(ele, options) {
        return $.metadata ? $.extend({}, options, $(ele).metadata()) : options;
    };
    
    $.fn.tipsy.autoNS = function() {
        return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n';
    };
    
    $.fn.tipsy.autoWE = function() {
        return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w';
    };
    
})(jQuery);
分享到:
评论

相关推荐

    jquery title提示效果,jquery tip提示效果

    6. **插件使用**:`jquery.tip.js`可能是一个预封装的jQuery插件,用于方便地实现提示效果。使用时,需要先引入jQuery库,然后引入插件,最后调用相应的插件方法,如`$('selector').tip(options)`。 7. **示例代码*...

    Jquery Tip 插件使用

    **jQuery Tip 插件使用详解** 在Web开发中,提示框(Tip)是常见的交互元素,用于向用户提供信息、警告或指示。jQuery Tip插件是一款轻量级且易于使用的工具,能够帮助开发者快速实现各种提示功能。本文将详细介绍...

    jquery.tip 点击加分效果,漂亮的tip

    在本文中,我们将深入探讨jQuery库中的一个独特插件——jQuery.tip。这个插件主要用于创建具有点击加分效果的提示信息,通常称为“提示框”或“提示气泡”。这种效果可以增强用户界面的互动性和用户体验,使信息传递...

    jQuery tip提示插件(实例分享)

    在本文中,我们将深入探讨jQuery Tip提示插件的实现,这是一种用于增强用户界面交互性的工具。这个插件允许开发者在网页元素上添加提示信息,帮助用户更好地理解和使用网站功能。 首先,我们来看一下示例代码。这段...

    jQuery tip cards插件用法实例:鼠标滑过翻转.rar

    jQuery tip cards插件用法实例:鼠标滑过翻转,比较集成的一个效果吧,不但是提示效果,还有焦点图切换特效,还有些文字和图片特效,可以自己整理下,用在自己的网页上,提示一下,请运行于支持HTML5的浏览器中。

    JQuery Tip多风格链接提示框

    内容索引:脚本资源,jQuery,链接提示,Tip,提示框 来自JQuery的一款多风格链接提示框 Tip,实际上也是多功能的,它可以允许你设置提示框的样式,是圆角还是直角,边框粗细,还可以在提示框内而已更加复杂的内容,比如...

    基于JQUERY 很灵活的TIP 工具 qTip2

    而`qTip2`则是基于jQuery的一个强大且灵活的提示(tooltip)插件,它允许开发者自定义提示框的样式、位置和触发事件,从而提供更丰富的用户体验。 `qTip2`的核心特性在于它的灵活性和可定制性。通过这个工具,你...

    stip:基于jQuery的tip组件

    stipdemo参见基于jQuery的tip组件*说明:$(selector).stip( ops ); //直接绑定或$.stip(target, ops); //代理模式$.stip.hide(); //关闭所有tip[配置参数]exCss : 额外追加的css样式wraperCss : 重新指定外围样式...

    Jquery 表单验证控件(tip提示效果).zip

    本资源“Jquery 表单验证控件(tip提示效果).zip”显然聚焦于jQuery在表单验证中的应用,尤其是提供了一种提示效果。这通常涉及到在用户填写表单时,实时地向他们显示错误或成功信息,提升用户体验。 1. **jQuery...

    jquery.tip.js

    鼠标移动到文字上面显示图片。jquery插件。网页特效插件

    jQuery表单验证插件EasyValidator 2.0带TIP提示效果

    EasyValidator 2.0就是这样一款专门针对jQuery设计的表单验证插件,它具有TIP提示效果,能为用户提供即时反馈,增强交互体验。 **一、EasyValidator 2.0简介** EasyValidator 2.0是基于jQuery的轻量级表单验证插件...

    jQuery提示效果 在中间提示(改善提示效果)

    本插件小巧玲珑,不到10KB(除jQuery库以外),兼容IE6,IE7,IE8,fireworks,oprea等主流浏览器,适用于各种分辨率下。用于取代过去以往的对话框式的消息框,...jQuery提示效果 jQuery tip jQuery弹出提示 jQuery提示弹出

    动感的Tip提示效果,基于jquery的代码实现

    本篇文章将详细讲解如何利用jQuery实现动感的Tip提示效果。 首先,Tip提示效果通常用于在用户操作时提供即时反馈或显示额外信息。这种效果能够增强用户体验,使用户界面更加友好和互动。在基于jQuery实现动态Tip...

    jQuery EasyUI 扩展(tip和form)

    在"jQuery EasyUI 扩展(tip和form)"这个主题中,我们将深入探讨如何利用 EasyUI 的扩展功能来优化提示(tip)和表单(form)的交互体验。 首先,让我们谈谈“Tip”。在 Web 开发中,提示信息通常用于向用户提供即时...

    jquery模拟select,带tip提示

    本文将详细讲解如何使用jQuery模拟Select下拉框,并结合Tip提示功能,提升用户体验。这个实例中,开发者创建了一个自定义的jQuery插件,用于替代原生的HTML `&lt;select&gt;` 元素,同时集成了qTip插件,为模拟的Select...

    分享一个类似QQ空间的tip提示,基于jQuery

    在页面引入jQuery,然后引入附件里的jquery.tipMessage.js 用法: $.tipMessage(提示语, 图标类型, 几秒后消失,zIndex,回调); jQuery.tipMessage = function (msg, type, time, zIndex, callback) 演示: $.tip...

    The Jquery Tool Tip.rar

    《jQuery Tooltip:创造交互式提示效果》 在网页设计中,工具提示(Tooltip)是一种常见的交互元素,它可以在用户将鼠标悬停在特定元素上时显示额外的信息。jQuery作为一个广泛使用的JavaScript库,提供了丰富的...

Global site tag (gtag.js) - Google Analytics