1
我中心使用一個div ...讓div總是直接出現在另一個div上方?
jQuery.fn.center = function() {
this.css("position","absolute");
this.css("top", (($(window).height() - this.outerHeight())/2) +
$(window).scrollTop() + "px");
this.css("left", (($(window).width() - this.outerWidth())/2) +
$(window).scrollLeft() + "px");
return this;
}
我再像移動到這個中心的DIV直接在另一個上面div中,他們將坐在如下...
|-------------|
| Moved Above |
|-------------|
| |
| Centered |
| |
|-------------|
我會如何實現這一目標?