91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

點擊HTML頁面問號出現提示框的實現方法

發布時間:2020-12-03 13:54:37 來源:億速云 閱讀:331 作者:小新 欄目:web開發

這篇文章給大家分享的是有關點擊HTML頁面問號出現提示框的實現方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

本demo的功能:點擊頁面按鈕在其邊緣出現提示信息,點擊頁面任何一處則消失。

如下圖:
點擊HTML頁面問號出現提示框的實現方法

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 = '<h4 class="tt"><span class="txt_01">' + o.title + t.options.titleEnd + '</span></h4><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頁面問號出現提示框的實現方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

林芝县| 琼结县| 淮滨县| 金寨县| 湘阴县| 博湖县| 云林县| 迁西县| 油尖旺区| 元江| 色达县| 十堰市| 宁夏| 承德县| 台江县| 揭西县| 洞头县| 任丘市| 上饶市| 洛浦县| 上杭县| 花垣县| 大名县| 哈尔滨市| 青川县| 土默特左旗| 大城县| 东至县| 咸阳市| 富裕县| 靖安县| 卫辉市| 万安县| 荥阳市| 浦江县| 乡宁县| 元江| 柳江县| 浠水县| 莒南县| 穆棱市|