最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

始終在屏幕中間顯示Div的代碼(css+js)_javascript技巧

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 20:58:23
文檔

始終在屏幕中間顯示Div的代碼(css+js)_javascript技巧

始終在屏幕中間顯示Div的代碼(css+js)_javascript技巧:一、在中間顯示;(參考:sky100articles1790515) 代碼如下: .ordersearchDivCss { position: absolute; z-index: 100; display: block; background-color: #6ec1df; } Js code 調(diào)用: // JScript 文件 通過(guò)元
推薦度:
導(dǎo)讀始終在屏幕中間顯示Div的代碼(css+js)_javascript技巧:一、在中間顯示;(參考:sky100articles1790515) 代碼如下: .ordersearchDivCss { position: absolute; z-index: 100; display: block; background-color: #6ec1df; } Js code 調(diào)用: // JScript 文件 通過(guò)元

一、在中間顯示;(參考:sky100articles1790515)
代碼如下:
.ordersearchDivCss
{
position: absolute;
z-index: 100;
display: block;
background-color: #6ec1df;
}


Js code
調(diào)用:
// JScript 文件 通過(guò)元素id得到對(duì)象的函數(shù)
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);
}

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

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

始終在屏幕中間顯示Div的代碼(css+js)_javascript技巧

始終在屏幕中間顯示Div的代碼(css+js)_javascript技巧:一、在中間顯示;(參考:sky100articles1790515) 代碼如下: .ordersearchDivCss { position: absolute; z-index: 100; display: block; background-color: #6ec1df; } Js code 調(diào)用: // JScript 文件 通過(guò)元
推薦度:
標(biāo)簽: js 代碼 的代碼
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top