Commit f2196ffe by libai

ft活动上线

parent 5af9cc2e
Showing with 18 additions and 1 deletions
......@@ -361,7 +361,24 @@ var scoreRankTxt="嘉年華積分"
list(1,0)
list(2,0)
bottom()
showLazy1()
function showLazy1(){
var imgList = [];
var num = 0;
loadImage()
function loadImage() {
var img = new Image();
img.addEventListener("load", loadHandler);
img.src = "images/s1/合成 1_"+imgAdd(num)+".png";
console.log(11)
}
function loadHandler() {
imgList.push(this.cloneNode());
num++;
if (num > 47) { return; }
this.src = "images/s1/合成 1_"+imgAdd(num)+".png";
}
}
$(".layer-btn").on("click",function(){
layer.closeAll()
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment