分享一个jquery插件-poshytip(模仿显示微博人的图像)

这种效果常常有3个需求

1 鼠标移动到人图像上时,显示这个人的信息,鼠标离开人图像时隐藏这个人的相关信息

2当鼠标移动到到人的信息块时,信息依然显示,当鼠标离开人的信息块时,信息隐藏

3 必须是自动关闭而不是手动关闭

enter image description here

jquery插件地址:http://vadikom.com/demos/poshytip/

为了降低服务器压力,在密集使用时,会创建很多div,优化了一点点 代码如下

$.Poshytip = function(elm, options) {
        if( $(elm).data('Poshytipkeyint')!="1")
        {
            $(elm).data('Poshytipkeyint','1')
        }
        else
        {
            return;
        }

        this.$elm = $(elm);
        this.opts = $.extend({}, $.fn.poshytip.defaults, options);

        this.$tip = $(['<div class="',this.opts.className,'">',
                '<div class="tip-inner tip-bg-image"></div>',
                '<div class="tip-arrow tip-arrow-top tip-arrow-right tip-arrow-bottom tip-arrow-left"></div>',
            '</div>'].join('')).appendTo(document.body);


        this.$arrow = this.$tip.find('div.tip-arrow');
        this.$inner = this.$tip.find('div.tip-inner');
        this.disabled = false;
        this.content = null;
        this.init();
    };