始終在螢幕中間顯示Div的代碼(css+js)

來源:互聯網
上載者:User

一、在中間顯示;(參考:sky100articles1790515)
複製代碼 代碼如下:.ordersearchDivCss
{
position: absolute;
z-index: 100;
display: block;
background-color: #6ec1df;
}
<div class="ordersearchDivCss" id="DivMain" style="width: 400px; height:200px" align="center"></div>

Js code
調用:<input type="button" id="Button1" onclick="sc1(‘DivMain')" />
// JScript 檔案 通過元素id得到對象的函數
function $(id)
{
return document.getElementById(id);
} 複製代碼 代碼如下:function sc1(DivId) {
var Div = $(DivId);
$(DivId).style.top = (document.documentElement.scrollTop + (document.documentElement.clientHeight - $(DivId).offsetHeight) / 2) + "px";
$(DivId).style.left = (document.documentElement.scrollLeft + (document.documentElement.clientWidth - $(DivId).offsetWidth) / 2) + "px";
//alert($(DivId).style.top);
}

二、始終在中間顯示,滾動時,在Js中增加以下代碼:
複製代碼 代碼如下:function scall() {
sc1("DivMain");
}
window.onscroll = scall;
window.onresize = scall;
window.onload = scall;

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.