jQuery DIV 화면 자동 수평 가운데 맞춤

1208 단어 jQueryjavascript
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.οnlοad=function() {
    autosize($(".na_popup"));
}
window.οnresize=function() {
    autosize($(".na_popup"));
}

좋은 웹페이지 즐겨찾기