Commit 60157caf by doszhang

dos

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