今天小編給大家分享一下怎么實(shí)現(xiàn)點(diǎn)擊HTML頁(yè)面問(wèn)號(hào)出現(xiàn)提示框的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
浦口網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、APP開(kāi)發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開(kāi)發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)自2013年起到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專(zhuān)注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
本demo的功能:點(diǎn)擊頁(yè)面按鈕在其邊緣出現(xiàn)提示信息,點(diǎn)擊頁(yè)面任何一處則消失。
如下圖:
jquery插件;
layer插件;
==注意==:
class="j-help-tips"這個(gè)class是核心,不可缺少。
data-tips屬性是必須的。
data-tips屬性中:type:"1"不用修改;
data-tips屬性中:txt內(nèi)容即是要提示的內(nèi)容。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
①
②
③
$(function(){ var tips = new helpTips().init(); }) |
本demo的css非必須,不影響功能;
1 2 3 4 5 6 7 8 9 10 | .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; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | //定義提示彈出框; var helpTipsLayer; //定義彈出框的默認(rèn)設(shè)置; function helpTips(t) { this.options = {}, this.options.elem = ".j-help-tips", //與頁(yè)面class相對(duì)應(yīng); this.options.type = 1, this.options.color = "#8db3d7", this.options.time = 0, //設(shè)置0是提示彈出框不會(huì)自動(dòng)消失;可設(shè)置為其他數(shù)字,以毫秒為單位; 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() { //點(diǎn)擊頁(yè)面任何一處可使提示彈出框消失; $(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);//點(diǎn)擊其他任意的提示框按鈕,則關(guān)閉上一個(gè)提示框。 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 = ' ', n = ' ' + o.title + t.options.titleEnd + '',s = " ",l = '
p = o.txt.split("|"), a = p.length; a > 0 && $.each(p, function(t, i) { l += ' }); 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 += ' 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("請(qǐng)給定提示標(biāo)題|文字|圖片---來(lái)自[script.js]函數(shù)[helpTips]") } }; |
以上就是“怎么實(shí)現(xiàn)點(diǎn)擊HTML頁(yè)面問(wèn)號(hào)出現(xiàn)提示框”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。