原生js封装弹出层

我们平常在项目中,通常需要给用户操作的结果进行提示,但是js默认给出的提示弹窗样式又比较丑,所以我们可以自己封装弹出层,用来给用户做不同的提示,具体效果如下:
普通弹窗如下图:


普通弹窗

询问弹窗如下图:


询问弹窗

提示弹窗如下图:
提示弹窗

加载弹窗如下图:
加载弹窗

封装的代码,使用单例模式进行封装,代码如下:

let popup = Popup = (function(){
    class Popup {
        // 构造函数中定义公共要使用的div
        constructor() {
            // 定义所有弹窗都需要使用的遮罩
            this.mask = document.createElement('div')
            // 设置样式
            this.setStyle(this.mask, {
                width: '100%',
                height: '100%',
                backgroundColor: 'rgba(0, 0, 0, .2)',
                position: 'absolute',
                left: 0,
                top: 0
            })
            // 创建中间显示内容的水平并垂直居中的div
            this.content = document.createElement('div')
            // 设置样式
            this.setStyle(this.content, {
                width: '300px',
                height: '150px',
                backgroundColor: '#fff',
                boxShadow: '0 0 2px #999',
                position: 'absolute',
                left: '50%',
                top: '50%',
                transform: 'translate(-50%,-50%)',
                borderRadius: '3px'
            })
            // 将这个小div放在遮罩中
            this.mask.appendChild(this.content)
        }
        // 中间有弹框的 - 适用于alert和confirm
        middleBox(param) {
            // 先清空中间小div的内容 - 防止调用多次,出现混乱
            this.content.innerHTML = ''
            // 定义标题和内容变量
            let title = '默认标题内容',content = '弹窗的默认提示信息!';
            // 检测参数类型
            if({}.toString.call(param) === '[object String]') {
                content = param
            } else if({}.toString.call(param) === '[object Object]') {
                title = param.title
                content = param.content
            }
            // 将遮罩放在body中显示
            document.body.appendChild(this.mask)
            // 给中间的小div设置默认的排版
            // 上面标题部分
            this.title = document.createElement('div')
            // 设置样式
            this.setStyle(this.title, {
                width: '100%',
                height: '50px',
                borderBottom: '1px solid #ccc',
                lineHeight: '50px',
                paddingLeft: '20px',
                boxSizing: 'border-box',
                color: '#666'
            })
            // 设置默认标题内容
            this.title.innerText = title
            // 将标题部分放在中间div中
            this.content.appendChild(this.title)
            // 关闭按钮
            this.closeBtn = document.createElement('a')
            // 设置内容
            this.closeBtn.innerText = '×'
            // 设置href属性
            this.closeBtn.setAttribute('href', 'javascript:;')
            // 设置样式
            this.setStyle(this.closeBtn, {
                textDecoration: 'none',
                color: '#666',
                position: 'absolute',
                right: '10px',
                top: '6px',
                fontSize: '25px'
            })
            // 将关闭按钮放在中间小div中
            this.content.appendChild(this.closeBtn)
            // 下面具体放内容的部分
            this.description = document.createElement('div')
            // 放入默认内容
            this.description.innerText = content
            // 将默认内容放在中间的小div中
            this.content.appendChild(this.description)
            // 设置样式
            this.setStyle(this.description, {
                color: '#666',
                paddingLeft: '20px',
                lineHeight: '50px'
            })
        }
        // 弹出提示框
        alert(param) {
            this.middleBox(param)
            // 右下角的确定按钮
            this.btn = document.createElement('button')
            // 添加内容
            this.btn.innerText = '确定'
            // 设置内容
            this.setStyle(this.btn, {
                backgroundColor: 'rgb(30, 159, 255)',
                position: 'absolute',
                right: '10px',
                bottom: '5px',
                outline: 'none',
                border: 'none',
                color: '#fff',
                fontSize: '16px',
                borderRadius: '2px',
                padding: '0 10px',
                height: '30px',
                lineHeight: '30px'
            })
            // 将按钮放在div中
            this.content.appendChild(this.btn)
            // 关闭按钮和确定按钮的点击事件
            this.btn.onclick = this.closeBtn.onclick = () => this.close()
        }
        confirm(info, obj, cb1, cb2) {
            // 调用创建中间小div的函数
            this.middleBox(info)
            // 设置默认参数
            let defaultBtn = { // 默认按钮
                btn: ['确定', '取消']
            }
            // 设置默认的确定按钮和取消按钮点击后要执行的函数
            let affirm = function(){}
            let cancel = function(){}
            // 替换默认参数 
            if(obj && {}.toString.call(obj) === '[object Object]') {
                for(let attr in obj) {
                    defaultBtn[attr] = obj[attr]
                }
            }       
            if(cb1 && {}.toString.call(cb1) === '[object Function]') {
                affirm = cb1
            }
            if(cb2 && {}.toString.call(cb2) === '[object Function]') {
                cancel = cb2
            }
            // 创建确定按钮
            this.btn = document.createElement('button')
            // 添加内容
            this.btn.innerText = defaultBtn.btn[0]
            // 设置内容
            this.setStyle(this.btn, {
                backgroundColor: 'rgb(30, 159, 255)',
                position: 'absolute',
                right: '70px',
                bottom: '5px',
                outline: 'none',
                border: 'none',
                color: '#fff',
                fontSize: '16px',
                borderRadius: '2px',
                padding: '0 10px',
                height: '30px',
                lineHeight: '30px'
            })
            // 将按钮放在div中
            this.content.appendChild(this.btn)
            // 创建取消按钮
            this.cancel = document.createElement('button')
            // 添加内容
            this.cancel.innerText = defaultBtn.btn[1]
            // 设置内容
            this.setStyle(this.cancel, {
                backgroundColor: 'transparent',
                position: 'absolute',
                right: '10px',
                bottom: '5px',
                outline: 'none',
                border: '1px solid #ccc',
                color: '#666',
                fontSize: '16px',
                borderRadius: '2px',
                padding: '0 10px',
                height: '30px',
                lineHeight: '30px'
            })
            // 将按钮放在div中
            this.content.appendChild(this.cancel)
            // 关闭按钮的点击事件
            this.closeBtn.onclick = () => this.close()
            // 确定按钮的点击事件
            this.btn.onclick = () => {
                affirm()
                this.close()
            }
            // 取消按钮的点击事件
            this.cancel.onclick = () => {
                cancel()
                this.close()
            }
        }
        msg(str, param) {
            // 清空中间的小div中的内容
            this.content.innerHTML = ''
            // 定义默认参数
            let content = '默认提示内容'
            let options = {
                time: 2000,
            }
            // 将参数覆盖掉默认值
            if(str && {}.toString.call(str) === '[object String]') {
                content = str
            }
            if(param && {}.toString.call(param) === '[object Object]') {
                for(let attr in param) {
                    options[attr] = param[attr]
                }
            }
            // 将遮罩放在body中显示
            document.body.appendChild(this.mask)
            // 给遮罩中间的div设置样式
            this.setStyle(this.content, {
                width: 'auto',
                height: '80px',
                backgroundColor: 'rgb(255, 255, 255)',
                boxShadow: '0 0 2px #999',
                position: 'absolute',
                left: '50%',
                top: '50%',
                transform: 'translate(-50%,-50%)',
                borderRadius: '3px',
                padding: '0 30px 0',
                lineHeight: '80px',
                color: '#666'
            })
            // 定义icon所用的标签
            let icon = document.createElement('span')
            // 判断icon
            if(options.icon === 1) {
                // 给icon设置内容和样式
                icon.innerText = '√'
                this.setStyle(icon, {
                    width: '30px',
                    height: '30px',
                    border: '3px solid rgb(56, 201, 177)',
                    borderRadius: '50%',
                    display: 'inline-block',
                    color: 'rgb(56, 201, 177)',
                    lineHeight: '30px',
                    textAlign: 'center',
                    margin: '0 10px',
                    fontSize: '20px',
                    fontWeight: 'bold'
                })
            } else if(options.icon === 0) {
                // 给icon设置内容和样式
                icon.innerText = '×'
                this.setStyle(icon, {
                    width: '30px',
                    height: '30px',
                    border: '3px solid rgb(233, 91, 76)',
                    borderRadius: '50%',
                    display: 'inline-block',
                    color: 'rgb(233, 91, 76)',
                    lineHeight: '30px',
                    textAlign: 'center',
                    margin: '0 10px',
                    fontSize: '20px',
                    fontWeight: 'bold'
                })
            } else {
                this.setStyle(this.content, {
                    width: 'auto',
                    height: '50px',
                    backgroundColor: 'rgba(0, 0, 0, 0.5)',
                    boxShadow: '0 0 2px #999',
                    position: 'absolute',
                    left: '50%',
                    top: '50%',
                    transform: 'translate(-50%, -50%)',
                    borderRadius: '3px',
                    padding: '0 30px 0',
                    lineHeight: '50px',
                    color: '#fff'
                })
            }
            // 将icon放到小div中
            this.content.appendChild(icon)
            // 给中间小div放入内容
            this.content.innerHTML += content
            // 延迟一会自动消失
            setTimeout(() => {
                // 从body中将遮罩删除
                if(this.mask.parentElement) {
                    document.body.removeChild(this.mask)
                }
            }, options.time)
        }
        load() {
            // 将遮罩放到body中显示
            document.body.appendChild(this.mask)
            // 给中间的小div设置样式
            this.setStyle(this.content, {
                border: 'none',
                boxShadow: '0 0 0 transparent',
                backgroundColor: 'transparent'
            })
            // 创建旋转的div
            for(let i = 0; i < 8; i++) {
                let div = document.createElement('div')
                this.setStyle(div, {
                    width: '4px',
                    height: '12px',
                    backgroundColor: 'rgb(6, 43, 78)',
                    transformOrigin: '0 15px',
                    transform: 'rotate('+360/8*i+'deg) translate(-50%, -50%)',
                    position: 'absolute',
                    left: '50%',
                    top: '50%',
                    opacity: '0.5'
                })
                if(i === 0) {
                    div.style.opacity = 1
                }
                this.content.appendChild(div)
            }
            // 让div循环增加透明度
            let i = 0
            return setInterval(() => {
                i++
                if(i === this.content.children.length) {
                    i = 0
                    this.content.children[this.content.children.length-1].style.opacity = '0.5'
                }else{
                    this.content.children[i-1].style.opacity = '0.5'
                }
                
                this.content.children[i].style.opacity = 1
            }, 50)
        }
        close(timerId) {
            // 如果有定时器,就停止定时器
            if(timerId) clearInterval(timerId)
            // 将遮罩从body中删除
            document.body.removeChild(this.mask)
        }
        // 设置样式的函数
        setStyle(ele, styleObj) {
            for(let attr in styleObj){
                ele.style[attr] = styleObj[attr]
            }
        }
    }
    let popup = null;
    return (function() {
        if(!popup) {
            popup = new Popup()
        }
        return popup;
    })()
})()

调用方式和使用说明如下:

  • 普通弹窗

    // 默认字符串表示弹窗中提示的内容
    popup.alert('操作成功')
    popup.alert({
        // title表示弹窗中的标题
        title: '标题', 
        // content表示弹窗中提示的内容
        content: '操作成功'
    })
    
  • 询问弹窗

    // 默认字符串表示询问弹窗中的内容
    popup.confirm('操作成功')
    popup.confirm({
        // title表示询问弹窗的标题
        title: '标题', 
        // content表示询问弹窗的内容
        content: '操作成功'
    },{
        // btn表示,两个按钮分别显示的内容
        btn: ['ok' ,'no']
    },function(){
        // 第一个函数,表示点击了ok按钮要执行的代码
        alert('ok')
    },function(){
        // 第二个函数,表示点击了no按钮要执行的代码
        alert('no')
    })
    
  • 提示弹窗

    popup.msg('提示的内容')
    popup.msg('提示的内容',{
        // icon:0表示失败,1表示成功
        icon: 0
    })
    popup.msg('提示的内容',{
        icon: 1,
        // time表示自动在多少毫秒之后消失
        time: 5000
    })
    
  • 加载弹窗

    var i = popup.load()
    

    要关闭的时候,使用:

    popup.close(i)
    
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,711评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,079评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,194评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,089评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,197评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,306评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,338评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,119评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,541评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,846评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,014评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,694评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,322评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,026评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,257评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,863评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,895评论 2 351

推荐阅读更多精彩内容