Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / fsActive

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit f2196ffe authored 9 months ago by libai's avatar libai
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

ft活动上线

parent 5af9cc2e
Show whitespace changes
Inline Side-by-side
Showing with 18 additions and 1 deletions
  • activeFt/summer/index.html
activeFt/summer/index.html
View file @ f2196ffe
...@@ -361,7 +361,24 @@ var scoreRankTxt="嘉年華積分" ...@@ -361,7 +361,24 @@ var scoreRankTxt="嘉年華積分"
list(1,0) list(1,0)
list(2,0) list(2,0)
bottom() 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-btn").on("click",function(){
layer.closeAll() layer.closeAll()
}) })
......
This diff is collapsed. Click to expand it.
  • Write
  • Preview
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