发布:2020/11/11 11:26:41作者:管理员 来源:本站 浏览次数:3826
具体demo地址如下,欢迎讨论指导。
See the Pen pop_window_center by Fiona ( @fiona2016) on CodePen.See the Pen pop_window_center by Fiona (@fiona2016) on CodePen.
蒙层
.div-pop{
background-color:rgba(0,0,0,0.5);
z-index:1;
}
蒙层居中,且底部div禁止滑动。
<style>
.container{
position:relative;
width:80%;
left:10%;
}
</style>
// 因为不同屏幕高度不同,且字体大小不同content高度也不同,所以高度在js中控制。
<script>
//用$代替document.querySelector,节省重复代码;
var $=function(selector){
return document.querySelector(selector);
};
//弹出框代码
function show_popwindow(){
//页面加载时,弹出框是隐藏的,当点击弹出按钮时,弹出框弹出
document.getElementById("live-detail-popwindow").style.display = "block";
//下面的两句是为了防止底部页面滑动。注:必须对html和body都设置overflow:hidden,移动端才能禁止滑动
$('html').setAttribute("style","overflow:hidden;height:100%;");
$('body').setAttribute("style","overflow:hidden;height:100%;");
// pop window 的margin top
//设备的总高度
var height_total= document.documentElement.clientHeight;
//container的高度
var popheight=$('#pop_container').offsetHeight;
//top的值=(总高度-container高度)/2
var margin_top = (height_total-popheight) / 2;
$('#pop_container').style.top=margin_top+"px";
}
//窗口关闭时,pop-window需要隐藏,且body和html的overflow还原;
function window_close(){
document.getElementById("live-detail-popwindow").style.display = "none";
$('html').setAttribute("style","overflow:auto;");
$('body').setAttribute("style","overflow:auto;");
}
© Copyright 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4