Commit 60157caf by doszhang

dos

parent 59ca16c9
...@@ -69,6 +69,13 @@ let noInfo = { ...@@ -69,6 +69,13 @@ let noInfo = {
let createPosterLock = false; let createPosterLock = false;
$('.loading-page').show(); $('.loading-page').show();
preloadimages(preloadImageList, function () { preloadimages(preloadImageList, function () {
const timestamp = timest();
if(timestamp > 1584633600)
{
$('.loading-page').hide();
$('.end-page').show();
return;
}
let progress = 0.3; let progress = 0.3;
let timer = setInterval(function () { let timer = setInterval(function () {
if (progress < 1) { if (progress < 1) {
...@@ -567,3 +574,9 @@ function checkIt(bind, maxNum) { ...@@ -567,3 +574,9 @@ function checkIt(bind, maxNum) {
} }
return true; return true;
} }
function timest() {
var tmp = Date.parse( new Date() ).toString();
tmp = tmp.substr(0,10);
return tmp;
}
\ No newline at end of file
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