1. 程式人生 > >在Jquery中讓一個容器div顯示在屏幕正中央

在Jquery中讓一個容器div顯示在屏幕正中央

教程 eight 實現 for ews http apt 零基礎 ref

分享一下我老師大神的人工智能教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智能的隊伍中來!http://www.captainbed.net

非常簡單就實現了,代碼不用解釋,很容易懂的

//request data for centering
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $("#popupContact").height();
var popupWidth = $("#popupContact").width();
//centering
$("#popupContact").css({
"position": "absolute",
"top": windowHeight/2-popupHeight/2,
"left": windowWidth/2-popupWidth/2
});

再分享一下我老師大神的人工智能教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智能的隊伍中來!http://www.captainbed.net

在Jquery中讓一個容器div顯示在屏幕正中央