前端js彈出框組件使用方法
下面分享一個(gè)js 彈出窗, 分 toast , dialog , load 三種彈窗 , 下面用js css 來(lái)實(shí)現(xiàn)以下:
首先是js代碼 | 采用了 es6 的寫法
//公共彈窗加載動(dòng)畫 const DIALOG_TOAST = '1', DIALOG_DIALOG = '2', DIALOG_LOAD = '3', class Dialog { constructor(type = DIALOG_DIALOG, dialogContent = '請(qǐng)求失敗', wrapClassName = 'common-dialog-wrap', dialogWrapClassName = 'common-dialog-content-wrap', contentClassName = 'common-dialog-content', btnClassName = 'common-btn', btnContent = '確定') { this.type = type; //吐司 if (type == DIALOG_TOAST) { this.dialog = document.createElement('div'); this.dialog.className = 'common-toast'; this.dialog.innerHTML = dialogContent; } //加載動(dòng)畫 else if (type == DIALOG_LOAD) { this.dialog = document.createElement('div'); this.dialog.className = wrapClassName; this.figure = document.createElement('figure'); this.figure.className = 'common-loadGif'; this.img = document.createElement('img'); this.img.src = getAbsolutePath() + '/fenqihui/static/bitmap/travel/loadgif.gif'; this.figure.appendChild(this.img); this.dialog.appendChild(this.figure); } else if (type == DIALOG_DIALOG) { this.dialog = document.createElement('div'); this.dialog.className = wrapClassName; this.dialogWrap = document.createElement('div'); this.dialogWrap.className = dialogWrapClassName; this.conetent = document.createElement('p'); this.conetent.innerHTML = dialogContent; this.conetent.className = contentClassName; this.confirmButton = document.createElement('p'); this.confirmButton.innerHTML = btnContent; this.confirmButton.className = btnClassName; this.dialogWrap.appendChild(this.conetent); this.dialogWrap.appendChild(this.confirmButton); this.dialog.appendChild(this.dialogWrap); this.bindEvent(); } } bindEvent() { this.confirmButton.addEventListener('click', ()=> { this.hide(); }) } show(time) { document.querySelector('body').appendChild(this.dialog); $(this.dialog).css('display', 'block'); if (this.type == DIALOG_TOAST) { setTimeout(()=> { $(this.dialog).css('display', 'none'); }, time); } } hide() { $(this.dialog).css('display', 'none'); } }
css 文件如下:
/*公共彈窗*/ .common-dialog-wrap { position: fixed; background: rgba(0,0,0,.7); z-index: 100; height: 100%; width: 100%; top: 0; } .common-dialog-content { height: 2rem; border-bottom: 1px solid #ccc7c7; line-height: 2rem; text-align: center; font-size: .65rem; } .common-btn { text-align: center; height: 2rem; color: orange; line-height: 2rem; } .common-dialog-content-wrap{ background: #fff; width: 10rem; height: 4rem; border-radius: 5px; position: fixed; left: 0; top:0; right: 0; bottom: 0; margin: auto; } /*吐司樣式*/ .common-toast{ height: 1.6rem; width: 4rem; box-sizing: content-box; color: #fff; padding: 0 10px; position: fixed; left: 0; top:0; bottom: 0; right: 0; text-align: center; line-height: 1.6rem; margin: auto; background: rgba(0,0,0,.7); border-radius: 2rem; } .common-loadGif{ height: 4rem; width: 4rem; position: fixed; top:0; left: 0; bottom: 0; right: 0; margin: auto; } .common-loadGif img{ height: 100%; width: 100%; border-radius: 10px; }
使用方式
new Dialog(DIALOG_DIALOG).show() | hide() new Dialog(DIALOG_LOAD).show() | hide() new Dialog(DIALOG_TOAST).show(time : number) | hide()
效果如下
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
javascript實(shí)現(xiàn)查找數(shù)組中最大值方法匯總
本文給大家匯總了一下使用javascript實(shí)現(xiàn)查找數(shù)組中最大最小值的一些方法,非常的簡(jiǎn)單實(shí)用,有需要的小伙伴可以來(lái)參考下。2016-02-02javascript實(shí)現(xiàn)阻止iOS APP中的鏈接打開(kāi)Safari瀏覽器
這篇文章主要介紹了javascript實(shí)現(xiàn)阻止iOS APP中的鏈接打開(kāi)Safari瀏覽器,這個(gè)IOS APP一般是Web APP,否則沒(méi)法使用本文的代碼,需要的朋友可以參考下2014-06-06Three.js實(shí)現(xiàn)臉書元宇宙3D動(dòng)態(tài)Logo效果
本文主要講述通過(guò) Three.js + Blender 技術(shù)棧,實(shí)現(xiàn) Meta 公司炫酷的 3D 動(dòng)態(tài) Logo,內(nèi)容包括基礎(chǔ)模型圓環(huán)、環(huán)面扭結(jié)、管道及模型生成、模型加載、添加動(dòng)畫、添加點(diǎn)擊事件、更換材質(zhì)等2021-11-11JavaScript使用addEventListener添加事件監(jiān)聽(tīng)用法實(shí)例
這篇文章主要介紹了JavaScript使用addEventListener添加事件監(jiān)聽(tīng)的方法,實(shí)例分析了addEventListener方法的相關(guān)使用技巧,需要的朋友可以參考下2015-06-06JS函數(shù)驗(yàn)證總結(jié)(方便js客戶端輸入驗(yàn)證)
JS函數(shù)驗(yàn)證總結(jié),都是一些基礎(chǔ)的東西,現(xiàn)在比較流行jquery了,不過(guò)這些東西仍然需要大家會(huì)。2010-10-10js實(shí)現(xiàn)文本框輸入文字個(gè)數(shù)限制代碼
這篇文章主要介紹了js實(shí)現(xiàn)文本框輸入文字個(gè)數(shù)限制代碼,文本框輸入的文字個(gè)數(shù)并不是無(wú)限制的,一般都會(huì)限定一個(gè)輸入最高上限,如何限制,請(qǐng)看本文2015-12-12JavaScript加強(qiáng)之自定義event事件
event事件在本文以自定義的方式出現(xiàn),感興趣的朋友可以參考下,希望對(duì)大家有所幫助2013-09-09CodeReview常見(jiàn)的幾個(gè)問(wèn)題梳理解決示例
這篇文章主要為大家介紹了CodeReview常見(jiàn)的幾個(gè)問(wèn)題梳理解決,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-12-12