屏幕上的中心DIV元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了屏幕上的中心DIV元素相关的知识,希望对你有一定的参考价值。
jQuery.fn.center = function () { this.css("position","absolute"); this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px"); this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px"); return this; } $(element).center();
以上是关于屏幕上的中心DIV元素的主要内容,如果未能解决你的问题,请参考以下文章