代码如下 | 复制代码 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Javascript 弹出层居中</title> <script type="text/javascript"> window.onload = show_center; //页面加载完触发事件 onresize = show_center; //浏览器改变大小时触发事件 function show_center(){ var body_width = document.body.clientWidth; var body_height = document.body.clientHeight; var div_width = document.getElementById("show_center").clientWidth; var div_height = document.getElementById("show_center").clientWidth; var div_left = (body_width - div_width) /2; var div_top = (body_height - div_height) /2; if(body_height <= div_height){div_top = 0;} if(body_width <= div_width){div_left = 0;} document.getElementById("show_center").style.left = div_left + 'px'; document.getElementById("show_center").style.top = div_top + 'px'; } </script> </head> <body style="background-color:#666"> <div id="show_center" style="position:absolute;width:200px;height:100px;background-color:#000; color:#fff; border:2px solid #fff">居中显示</div </body> </html> |
时间: 2024-10-25 10:29:18