欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

编写简单的jQuery提示插件

时间:2020-10-24 21:43:49|栏目:jquery|点击:

很简单的代码,就不多废话了。

代码:

复制代码 代码如下:

/**
* 2014年11月13日
* 提示插件
*/

(function ($) {
    $.fn.tips = function (text) {
        var divtipsstyle = "position: absolute; left: 0; top: 0; background-color: #dceaf2; padding: 3px; border: solid 1px #6dbde4; visibility: hidden; line-height:20px; ";
        $("body").append("<div class='div-tips' style='" + divtipsstyle + "'>" + text + "</div>");

        var divtips = $(".div-tips");
        divtips.css("visibility", "visible");

        var top = this.offset().top - divtips.height() - 8;
        var left = this.offset().left;
        divtips.css("top", top);
        divtips.css("left", left);

        $(document).mousemove(function (e) {
            var top = e.clientY + $(window).scrollTop() - divtips.height() - 12;
            var left = e.clientX;
            divtips.css("top", top);
            divtips.css("left", left);
        });
    };

    $.fn.removetips = function (text) {
        $(".div-tips").remove();
    };
})($);

效果图(鼠标移到商品上面,会在下面显示一个方形的商品详情框):

很实用吧,小伙伴们自由发挥下,结合到自己的项目中吧

上一篇:easyui datebox 时间限制,datebox开始时间限制结束时间,datebox截止日期比起始日期大的实现代码

栏    目:jquery

下一篇:基于jQuery实现仿百度首页选项卡切换效果

本文标题:编写简单的jQuery提示插件

本文地址:http://www.codeinn.net/misctech/15502.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有