主頁(yè) > 知識(shí)庫(kù) > js ajax加載時(shí)的進(jìn)度條代碼

js ajax加載時(shí)的進(jìn)度條代碼

熱門(mén)標(biāo)簽:老虎郵局地圖標(biāo)注點(diǎn) 青海醫(yī)療智能外呼系統(tǒng)怎么樣 目標(biāo)三維地圖標(biāo)注 徐州電銷(xiāo)卡外呼系統(tǒng)供應(yīng)商 上海浦東百度地圖標(biāo)注中心注冊(cè) 襄陽(yáng)外呼系統(tǒng)接口 科智聯(lián)智能電銷(xiāo)機(jī)器人 外呼系統(tǒng)獲取客戶(hù)手機(jī)號(hào) 百靈鳥(niǎo)

最終效果如下圖所示,pc和移動(dòng)端都可以展示的,調(diào)用方法也很簡(jiǎn)單,開(kāi)始調(diào)用:loading.baosight.showPageLoadingMsg(false),alse代表不現(xiàn)實(shí)加載說(shuō)明,true展示加載說(shuō)明.調(diào)用完成后調(diào)用:loading.baosight.hidePageLoadingMsg(),在整個(gè)代碼里有兩個(gè)文件,一個(gè)是js文件,一個(gè)是css文件。切記不要忘記引入jquery.js

css文件

#_loadMsg{
 display: inline-block;
 width: 100%;
 text-align: center;
 line-height: 45;
 padding-left: 20px;
 display : none;
}

#_loading_div {
 vertical-align: middle;
 display: inline-block;
 width: 100%;
 height: 100%;
 margin: 0 auto;
 text-align: center;
 position: absolute;
 z-index: 3;
 line-height: 40;
 opacity: 0.5;
 display : none;
 background: #CCCCCC;
}

#_loading_div span {
 display: inline-block;
 width: 10px;
 height: 40px;
 animation-name: scale;
 -webkit-animation-name: scale;
 -moz-animation-name: scale;
 -ms-animation-name: scale;
 -o-animation-name: scale;
 animation-duration: 1.2s;
 -webkit-animation-duration: 1.2s;
 -moz-animation-duration: 1.2s;
 -ms-animation-duration: 1.2s;
 -o-animation-duration: 1.2s;
 animation-iteration-count: infinite;
 -webkit-animation-iteration-count: infinite;
 -moz-animation-iteration-count: infinite;
 -ms-animation-iteration-count: infinite;
 -o-animation-iteration-count: infinite;
}
span.item-1 {
 background: #2ecc71;
}
span.item-2 {
 background: #3498db;
}
span.item-3 {
 background: #9b59b6;
}
span.item-4 {
 background: #e67e22;
}
span.item-5 {
 background: #c0392b;
}
span.item-6 {
 background: #e74c3c;
}
span.item-7 {
 background: #e74c8c;
}

.item-1 {
 animation-delay: -1s;
 -webkit-animation-delay: -1s;
 -moz-animation-delay: -1s;
 -ms-animation-delay: -1s;
 -o-animation-delay: -1s;
}

.item-2 {
 animation-delay: -0.9s;
 -webkit-animation-delay: -0.9s;
 -moz-animation-delay: -0.9s;
 -ms-animation-delay: -0.9s;
 -o-animation-delay: -0.9s;
}

.item-3 {
 animation-delay: -0.8s;
 -webkit-animation-delay: -0.8s;
 -moz-animation-delay: -0.8s;
 -ms-animation-delay: -0.8s;
 -o-animation-delay: -0.8s;
}

.item-4 {
 animation-delay: -0.7s;
 -webkit-animation-delay: -0.7s;
 -moz-animation-delay: -0.7s;
 -ms-animation-delay: -0.7s;
 -o-animation-delay: -0.7s;
}

.item-5 {
 animation-delay: -0.6s;
 -webkit-animation-delay: -0.6s;
 -moz-animation-delay: -0.6s;
 -ms-animation-delay: -0.6s;
 -o-animation-delay: -0.6s;
}

.item-6 {
 animation-delay: -0.5s;
 -webkit-animation-delay: -0.5s;
 -moz-animation-delay: -0.5s;
 -ms-animation-delay: -0.5s;
 -o-animation-delay: -0.5s;
}

.item-7 {
 animation-delay: -0.4s;
 -webkit-animation-delay: -0.4s;
 -moz-animation-delay: -0.4s;
 -ms-animation-delay: -0.4s;
 -o-animation-delay: -0.4s;
}

@-webkit-keyframes scale {
 0%, 40%, 100% {
 -moz-transform: scaleY(0.2);
 -ms-transform: scaleY(0.2);
 -o-transform: scaleY(0.2);
 -webkit-transform: scaleY(0.2);
 transform: scaleY(0.2);
 }

 20%, 60% {
 -moz-transform: scaleY(1);
 -ms-transform: scaleY(1);
 -o-transform: scaleY(1);
 -webkit-transform: scaleY(1);
 transform: scaleY(1);
 }
}
@-moz-keyframes scale {
 0%, 40%, 100% {
 -moz-transform: scaleY(0.2);
 -ms-transform: scaleY(0.2);
 -o-transform: scaleY(0.2);
 -webkit-transform: scaleY(0.2);
 transform: scaleY(0.2);
 }

 20%, 60% {
 -moz-transform: scaleY(1);
 -ms-transform: scaleY(1);
 -o-transform: scaleY(1);
 -webkit-transform: scaleY(1);
 transform: scaleY(1);
 }
}
@-ms-keyframes scale {
 0%, 40%, 100% {
 -moz-transform: scaleY(0.2);
 -ms-transform: scaleY(0.2);
 -o-transform: scaleY(0.2);
 -webkit-transform: scaleY(0.2);
 transform: scaleY(0.2);
 }

 20%, 60% {
 -moz-transform: scaleY(1);
 -ms-transform: scaleY(1);
 -o-transform: scaleY(1);
 -webkit-transform: scaleY(1);
 transform: scaleY(1);
 }
}
@keyframes scale {
 0%, 40%, 100% {
 -moz-transform: scaleY(0.2);
 -ms-transform: scaleY(0.2);
 -o-transform: scaleY(0.2);
 -webkit-transform: scaleY(0.2);
 transform: scaleY(0.2);
 }

 20%, 60% {
 -moz-transform: scaleY(1);
 -ms-transform: scaleY(1);
 -o-transform: scaleY(1);
 -webkit-transform: scaleY(1);
 transform: scaleY(1);
 }
}

js文件

var loading = {
 baosight : {
  showPageLoadingMsg : function(showMessage){
  if($("#_loading_div").length == 0){
   $("body").append('div id="_loading_div">span class="item-1">/span>span class="item-2">/span>span class="item-3">/span>span class="item-4">/span>span class="item-5">/span>span class="item-6">/span>span class="item-7">/span>/div>');
  }
  if($("#_loadMsg").length == 0){
   $("body").append('div id="_loadMsg">正在加載,請(qǐng)稍候... .../div>');
  }
  if(showMessage == true || showMessage == "true" ){
   $("#_loadMsg").show();
  }
  $("#_loading_div").show();
  },
  hidePageLoadingMsg :function() {
  $("#_loading_div").hide();
  $("#_loadMsg").hide();
  }
 }
}

以上內(nèi)容是本文的全部敘述,希望大家喜歡。

您可能感興趣的文章:
  • JavaScript實(shí)現(xiàn)水平進(jìn)度條拖拽效果
  • 原生JS實(shí)現(xiàn)首頁(yè)進(jìn)度加載動(dòng)畫(huà)
  • js HTML5 Ajax實(shí)現(xiàn)文件上傳進(jìn)度條功能
  • 直接拿來(lái)用的頁(yè)面跳轉(zhuǎn)進(jìn)度條JS實(shí)現(xiàn)
  • JavaScript實(shí)現(xiàn)網(wǎng)頁(yè)加載進(jìn)度條代碼超簡(jiǎn)單
  • jquery插件NProgress.js制作網(wǎng)頁(yè)加載進(jìn)度條
  • JS與HTML結(jié)合實(shí)現(xiàn)流程進(jìn)度展示條思路詳解

標(biāo)簽:紅河 揭陽(yáng) 咸寧 辛集 商洛 荊州 佛山 股票

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《js ajax加載時(shí)的進(jìn)度條代碼》,本文關(guān)鍵詞  ajax,加載,時(shí),的,進(jìn)度,條,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《js ajax加載時(shí)的進(jìn)度條代碼》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于js ajax加載時(shí)的進(jìn)度條代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章