Maison >interface Web >js tutoriel >jquery obtient un effet de centrage parfait du pop-up layer_jquery
jquery obtient l'effet de centrage parfait du calque contextuel
function center(obj){
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $(obj).height(); > var popupWidth = $(obj).width();
$(obj).css({
"position": "absolute",
"top": (windowHeight-popupHeight)/2 $ (document).scrollTop(),
"left": (windowWidth-popupWidth)/2
});