JS-----元素定位自动居中

来源:互联网 发布:ps淘宝抠图兼职 编辑:程序博客网 时间:2024/04/30 22:58

元素定位自动居中 .html

<div class="dialoge-set"></div>

元素定位自动居中 .js


//元素定位自动居中jQuery.fn.center = function() {this.css("position", "absolute");this.css("top","50%");this.css('left',"50%");this.css("margin-top", -(this.innerHeight()) / 2 + "px");this.css("margin-left", -(this.innerWidth()) / 2 + "px");return this;}//弹窗其他设置$('.dialoge-set').center();


0 0
原创粉丝点击