百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>html5教程> 点击HTML页面问号涌现提醒框(附源码)
分享文章到:

点击HTML页面问号涌现提醒框(附源码)

发布时间:09/01 来源:未知 浏览: 关键词:
本篇文章给大家带来的内容是关于点击HTML页面问号显现提醒框(附源码),有必然的参照 价值,有需要的伴侣可以参照 一下,但愿对你有所帮忙。

本demo的功效:点击页面按钮在其边沿显现提醒信息,点击页面任何一处则消逝。

如下图:

1.所需插件:

  • jquery插件;

  • layer插件;

2.HTML内容:

==留意==:

  1. class="j-help-tips"这个class是中心,不成缺少。

  2. data-tips属性是必需的。

  3. data-tips属性中:type:"1"不消修改;

  4. data-tips属性中:txt内容便是要提醒的内容。

<html>
    <head>
        <link rel="stylesheet" href="style.css"" type="text/css" />
    </head>
    
    <body>
        <div style="margin-top: 10%; margin-left: 10%;">
            <span class="testSpan">
                <i class="edi-icon j-help-tips" data-tips='{"type":"1","txt":"提醒内容111..."}'>①</i>
            </span>
            
            <span style="margin: 30px;">
                <i class="edi-icon j-help-tips" data-tips='{"type":"1","txt":"提醒内容222..."}'>②</i>
            </span>
            
            <span style="margin: 30px;">
                <i class="edi-icon j-help-tips" data-tips='{"type":"1","txt":"提醒内容333..."}'>③</i>
            </span>
        </div>
    </body>
    
    <!-- jquery -->
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <!-- layer -->
    <script src="layer/layer.js" type="text/javascript"></script>
    <!-- 提醒插件 -->
    <script src="script.js" type="text/javascript"></script>
    
    <script>
        $(function(){            <!-- 页面初始化加载 -->
            var tips = new helpTips().init();
        })    </script></html>

3.css内容:(非必要)

  • 本demo的css非必需,不影响功效;

.edi-icon {
    font-size: 18px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: .2px;
    -moz-osx-font-smoothing: grayscale;
    *display: inline;
    *zoom: 1;
    cursor: pointer;
}

4.javascript内容:(中心)

//定义提醒弹出框;
var helpTipsLayer;
//定义弹出框的默许设定;
function helpTips(t) {
    this.options = {}, 
    this.options.elem = ".j-help-tips", //与页面class相对应;
    this.options.type = 1, 
    this.options.color = "#8db3d7", 
    this.options.time = 0, //设定0是提醒弹出框不会主动消逝;可设定为其他数字,以毫秒为单位;
    this.options.titleEnd = "录入提醒", 
    this.options.width = "600px", 
    this.options.height = "", 
    this.options.imgWidth = "233", 
    this.options.imgHeight = "375", 
    "undefined" != typeof t && (this.options = $.extend({}, this.options, t)), 
    this.elemObj = $(this.options.elem)
}
!
function() {
    //点击页面任何一处可使提醒弹出框消逝;
    $(document).on("click", function(event){
        var e = event || window.event;
        var target = e.target || e.srcElement;
        var flag = $(target).hasClass("j-help-tips");
        if(helpTipsLayer && !flag){
            layer.close(helpTipsLayer);
        }
    })
}(), helpTips.prototype = {
    constructor : helpTips,
    init : function() {
        this.bindEvent()
    },
    bindEvent : function() {
        var t = this;
        t.elemObj.on("click", function() {
            layer.close(helpTipsLayer);//点击其他任意的提醒框按钮,则关闭上一个提醒框。
            var i = $(this),
                o = i.data("tips");
            if ("undefined" != typeof o && "undefined" != typeof o.type && 1 == o.type) {
                "undefined" != typeof o && "undefined" != typeof o.txt ? helpTipsLayer = layer.tips(o.txt, i, {
                    tips : [ t.options.type, t.options.color ],
                    time : t.options.time
                }) : t.log()
            } else {
                if ("undefined" != typeof o.title && "undefined" != typeof o.txt && "undefined" != typeof o.img) {
                    var e = '<p class="m-popup-ct">',
                        n = '<h3 class="tt"><span class="txt_01">' + o.title + t.options.titleEnd + '</span></h3><p class="line_01"></p>',
                        s = "</p>",
                        l = '<ul class="u-explain-list">',
                        p = o.txt.split("|"),
                        a = p.length;
                    a > 0 && $.each(p, function(t, i) {
                        l += '<li><i class="f-mr5">' + (t + 1) + "</i>" + i + "</li>"
                    });
                    var r = /^[1-9][\d]{0,2}$/,
                        c = t.options.imgWidth,
                        d = t.options.imgHeight;
                    "undefined" != typeof o.w && "undefined" != typeof o.h && r.test(o.w) && r.test(o.h) && (c = o.w, d = o.h), l += '<li><i class="f-mr5">' + (a + 1) + "</i><img src=" + o.img + ' width="' + c + '" height="' + d + '"/></li>', l += "</ul>";
                    var h = e + n + l + s;
                    layer.open({
                        title : !1,
                        type : 1,
                        area : [ t.options.width, t.options.height ],
                        shadeClose : !0,
                        maxmin : !1,
                        move : !1,
                        scrollbar : !1,
                        content : h
                    })
                } else {
                    t.log()
                }
            }
        })
    },
    log : function() {
        console.log("请给定提醒标题|文字|图片---来自[script.js]函数[helpTips]")
    }
};

以上就是点击HTML页面问号显现提醒框(附源码)的具体内容,更多请关注百分百源码网其它相关文章!

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有153人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板