码迷,mamicode.com
首页 > Web开发 > 详细

html 中手写阴影弹窗框封装

时间:2019-07-08 13:24:45      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:body   radius   remove   ext   Fix   osi   lin   htm   fixed   

// 弹出提示框
function popup(pWidth,content)
    {    
        $("#msg").remove();
        var html =‘<div id="msg" style="position:fixed;top:5%;width:100%;height:30px;line-height:30px;margin-top:-15px;"><p style="background:#000;opacity:0.8;width:‘+ pWidth +‘px;color:#fff;text-align:center;padding:10px 10px;margin:0 auto;font-size:12px;border-radius:4px;">‘+ content +‘</p></div>‘
                $("body").append(html);
                var t=setTimeout(next,2000);
                function next()
                {
                    $("#msg").remove();
                    
                }
    }

 

html 中手写阴影弹窗框封装

标签:body   radius   remove   ext   Fix   osi   lin   htm   fixed   

原文地址:https://www.cnblogs.com/panax/p/11150461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!