第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

顯示微調(diào)器,直到頁面完全加載

顯示微調(diào)器,直到頁面完全加載

侃侃爾雅 2022-10-08 18:05:14
我想顯示 Ring.html 幾秒鐘,直到 About.html 完全加載。當(dāng) About.html 完全加載時(shí),Ring.html 應(yīng)該會(huì)消失。由于我是網(wǎng)絡(luò)開發(fā)的新手,非常感謝您的幫助。如果要使用 jQuery,那么請告訴我如何以及在何處添加小步驟中的代碼。我曾嘗試查看其他人的答案,但無法理解如何將它們應(yīng)用于我的代碼。這是我的微調(diào)器的 Ring.html 頁面   <!doctype html><html>    <head>        <meta charset="utf-8">        <link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">        <link href="Ring.css" rel="stylesheet">    </head>    <body>        <div class="ring">            Loading        <span></span>        </div>    </body></html>這是我的微調(diào)器的 Ring.css 代碼body{    margin:0;    padding:0;    background:#262626;}.ring{    position:absolute;    top: 50%;    left:50%;    transform: translate(-50%,-50%);    width:150px;    height:150px;    background:transparent;    border-radius:50%;    text-align:center;    line-height:150px;    font-family: 'Pacifico', cursive;;    font-size:20px;    color:#9e1ac9;    letter-spacing:4px;    text-shadow:0 0 10px #9e1ac9;    box-shadow:0 0 20px rgba(0,0,0,.5);}.ring{     border:3px solid #3c3c3c;}.ring:before{    content:'';    position:absolute;    top:0;    left:0;    width:100%;    height:100%;    border-radius: 50%;    animation: animateCircle 2s linear infinite;}.ring:before{    border: 3px solid transparent;    border-top: 3px solid #9e1ac9;    border-right: 3px solid #9e1ac9;}span{    display:block;    position: absolute;    top: calc(50% - 2px);    Left: 50%;    width: 50%;    height: 4px;    background: transparent;    transform-origin: left;    animation: animate 2s linear infinite;}span:before{    content:'';    position:absolute;    width: 16px;    height: 16px;    border-radius: 50%;    background: #9e1ac9;    top: -6px;    right: -8px;    box-shadow: 0 0 20px #9e1ac9;}@keyframes animateCircle{    0%    {        transform:rotate(0deg);    }    100%    {        transform:rotate(360deg);    }}@keyframes animate{    0%    {        transform:rotate(45deg);    }    100%    {        transform:rotate(405deg);    }}
查看完整描述

2 回答

?
UYOU

TA貢獻(xiàn)1878條經(jīng)驗(yàn) 獲得超4個(gè)贊

window.addEventListener('load', function() {

   document.getElementById('loader').style.display = 'none';

});

在這種情況下,您的加載程序必須具有#loader 的 id。


查看完整回答
反對 回復(fù) 2022-10-08
?
拉丁的傳說

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超8個(gè)贊

<body>

    <div id="load"></div>

    <div id="contents">

          jlkjjlkjlkjlkjlklk

    </div>

</body>

這是你的身體


document.onreadystatechange = function () {

  var state = document.readyState

  if (state == 'interactive') {

       document.getElementById('contents').style.visibility="hidden";

  } else if (state == 'complete') {

      setTimeout(function(){

         document.getElementById('interactive');

         document.getElementById('load').style.visibility="hidden";

         document.getElementById('contents').style.visibility="visible";

      },1000);

  }

}

如果 readyState 等于 complete,這將是語句觸發(fā)器, document.readyState可以有 3 個(gè)值,即loading,interactive和complete..


如果document.readyState變?yōu)閏omplete,則微調(diào)器隱藏..


你應(yīng)該讓你的微調(diào)器全屏,最重要的是


.ring {

    width:100%;

    height:100%;

    position:fixed;

    z-index:999;

}


查看完整回答
反對 回復(fù) 2022-10-08
  • 2 回答
  • 0 關(guān)注
  • 213 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號