溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

真正的 用JS 做的 loading (轉(zhuǎn))

發(fā)布時(shí)間:2020-08-16 08:47:05 來(lái)源:ITPUB博客 閱讀:177 作者:amyz 欄目:編程語(yǔ)言
真正的 用JS 做的 loading (轉(zhuǎn))[@more@]

這個(gè)loading 需要2個(gè)頁(yè)面的的支持,還可以為一個(gè)站點(diǎn)的所有html設(shè)置這個(gè)loading程序
<!--=================================-->
<!-- index.htm--->
<!--=================================-->


您正在訪(fǎng)問(wèn) .NET">http://m9m.nease.net 的網(wǎng)站......


 
 

<body><BR>您的瀏覽器不支持frames......<BR></body>

<!--=================================-->
<!-- loading.htm--->
<!--=================================-->







<!--=================================-->
<!-- to.js -->
<!--=================================-->
document.write('');

function WriteButton(fnFunctionName, ButtonValue, ButtonURL, wd)
{
  var strTmp = "",n = 0;
  if (fnFunctionName == "")
  strTmp = "self.location = '" + ButtonURL + "';";
 else
  strTmp = fnFunctionName + '();';
 for(var i = 0; i < ButtonValue.length; i++)
 {
  var c = ButtonValue.substr(i, 1);
  if( c > "z" || c < "A")
  n += 2;
  else
  n += 1;
 }
 if( wd == "") wd = (n * 8);

 document.write("

" + ButtonValue + "
");
}

function wtdiv()
{
  document.write("

");
}
wtdiv();

function openwin()
{
  if(self == window.parent.frames['t'] && top.parent.frm)
 top.parent.frm.rows = '*,0';
  else if(top.parent.frm) top.parent.frm.rows = '0,*';
}

var wt = 0, n = 0;
function countwt()
{
  if (wt)
  clearTimeout(wt);
  wtime.innerHTML = "" + n++ ;
  wt = setTimeout("countwt();", 1000);
}


function showdiv()
{
  openwin();
 document.getElementById("stdiv").style.visibility = "visible";
  countwt();
}
openwin();

<!--=================================-->
<!--  h.js -->
<!--=================================-->
if(self != window.parent.frames['t'] && window.parent.frames['t'])
  window.parent.frames['t'].showdiv();
else if(self == window.parent.frames['d'] && window.parent.frames['d'])
  window.parent.frames['d'].showdiv();

最后的說(shuō)明
在您的i.htm,也就是您的真正的index.htm首頁(yè)里加入如下代碼就可以
后加

前加入

就可以了

不明白的可以訪(fǎng)問(wèn)我的網(wǎng)站 http://m9m.nease.net 或 來(lái)信和我交流
qq: 11602011


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI