|
@@ -372,21 +372,23 @@ $(function(){
|
|
|
clearInterval(setTime);
|
|
|
let txt = "loading...",htmls=[],i=0,
|
|
|
txtArr = txt.split('');
|
|
|
+ let ps = document.createElement('p');
|
|
|
txtArr.map(item=>{
|
|
|
htmls.push(`
|
|
|
<span>${item}</span>
|
|
|
`)
|
|
|
- })
|
|
|
+
|
|
|
+ });
|
|
|
+ ps.innerHTML=htmls.join('');
|
|
|
+ $('.loading div').html(ps);
|
|
|
function active(){
|
|
|
i++;
|
|
|
- if(i>=txtArr.length){
|
|
|
+ if(i>txtArr.length){
|
|
|
i=0;
|
|
|
}
|
|
|
- $('.loading p').html(htmls);
|
|
|
- $('.loading p span').eq(i).addClass('active');
|
|
|
+ $('.loading p span').eq(i).addClass('active').siblings().removeClass('active');
|
|
|
}
|
|
|
let setTime =setInterval(()=>{active()},100);
|
|
|
}
|
|
|
- console.log()
|
|
|
});
|
|
|
|