jQuery实现DIV屏幕自动水平垂直居中
程序员文章站
2022-05-01 23:08:32
...
css
.na_popup{ width:900px; height:150px; position: fixed; z-index: 1500; top:0; left: 0; }
//封装jQuery插件版
(function($) {
var methods = {
autosize: function(ele) {
if(ele.height() <= $(window).height()) {
ele.css("top", ($(window).height() - ele.height()) / 2);
}
if(ele.width() <= $(window).width()) {
ele.css("left", ($(window).width() - ele.width()) / 2);
}
}
}
$.fn.extend({
propup: function(options) {
$this = $(this);
methods.autosize($this);
$(window).resize(function() {
methods.autosize($this);
});
}
});
})(jQuery);
$(".na_popup").propup();//要居中的DOM元素
//js版(window.onload,window.onresize时执行)
function autosize(ele) {
if($(".na_popup").height() <= $(window).height()) {
ele.css("top", ($(window).height() - ele.height()) / 2);
}
if(ele.width() <= $(window).width()) {
ele.css("left", ($(window).width() - ele.width()) / 2);
}
}
window.onload=function() {
autosize($(".na_popup"));
}
window.onresize=function() {
autosize($(".na_popup"));
}
推荐阅读
-
css3 flex实现div内容水平垂直居中的几种方法
-
css实现div不定宽高垂直水平居中解决方案
-
CSS实现子元素div水平垂直居中的示例
-
css如何将div实现全屏水平垂直居中_html/css_WEB-ITnose
-
利用CSS实现div水平垂直居中
-
HTML+CSS,让div在屏幕中居中(水平居中+垂直居中)方法总结
-
css如何将div实现全屏水平垂直居中_html/css_WEB-ITnose
-
div+css水平和垂直居中的实现方案
-
如何实现div水平和垂直居中效果_html/css_WEB-ITnose
-
div+css实现未知宽高元素垂直水平居中_html/css_WEB-ITnose