1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
| var now1 = new Date();
function createtime1() { var grt = new Date("01/01/2023 00:00:00"); now1.setTime(now1.getTime() + 250); var days = (now1 - grt) / 1000 / 60 / 60 / 24; var dnum = Math.floor(days); var ascll = [ `欢迎来到Nanami Kento的Blog!`, ` ,--. ,--. ,--.'| ____ ,--/ /| ___ ,--,: : | ,' , \`. ,--, ,---,': / ' ,--.'|_ ,\`--.'\`| ' : ,---, ,-+-,.' _ |,--.'| : : '/ / ,---, | | :,' ,---. | : : | | ,-+-. / | ,-+-. ; , ||| |, | ' , ,-+-. / | : : ' : ' ,'\\ : | \\ | : ,--.--. ,--.'|' | ,--.--. ,--.'|' | ||\`--'_ ' | / ,---. ,--.'|' |.;__,' / / / | | : ' '; | / \\ | | ,"' | / \\ | | ,', | |,,' ,'| | ; ; / \\| | ,"' || | | . ; ,. : ' ' ;. ;.--. .-. | | | / | |.--. .-. | | | / | |--' ' | | : ' \\ / / | | / | |:__,'| : ' | |: : | | | \\ | \\__\\/: . . | | | | | \\__\\/: . . | : | | , | | : | | ' . ' / | | | | | ' : |__' | .; : ' : | ; .' ," .--.; | | | | |/ ," .--.; | | : | |/ ' : |__ ' : |. \\' ; /| | | |/ | | '.'| : | | | '\`--' / / ,. | | | |--' / / ,. | | | |\`-' | | '.'| | | '_\\.'' | / | | |--' ; : ;\\ \\ / ' : | ; : .' \\| |/ ; : .' \\| ;/ ; : ; ' : | | : | |/ | , / \`----' ; |.' | , .-./'---' | , .-./'---' | , / ; |,' \\ \\ /'---' ---\`-' '---' \`--\`---' \`--\`---' ---\`-' '---' \`----' `, "已运行", dnum, "天 ©2022 By Nanami Kento", ]; setTimeout( console.log.bind( console, `\n%c${ascll[0]} %c ${ascll[1]} %c ${ascll[2]} %c${ascll[3]}%c ${ascll[4]}`, "color:#39c5bb", "", "color:#39c5bb", "color:#39c5bb", "color:#39c5bb", ) ); }
createtime1();
function createtime2() { var ascll2 = [`NCC2-036`, `调用前置摄像头拍照成功,识别为「客人」`]; setTimeout( console.log.bind( console, `%c ${ascll2[0]} %c ${ascll2[1]}`, "color:white; background-color:#10bcc0", "", ) ); setTimeout(console.log.bind(console, "%c WELCOME %c 欢迎光临", "color:white; background-color:#23c682", "")); setTimeout( console.warn.bind( console, "%c ⚡ Powered by Nanami Kento %c 你正在访问Nanami Kento的Blog", "color:white; background-color:#f0ad4e", "" ) ); setTimeout(console.log.bind(console, "%c W23-12 %c 系统监测到你已打开控制台", "color:white; background-color:#4f90d9", "")); setTimeout( console.warn.bind(console, "%c S013-782 %c 你现在正处于监控中", "color:white; background-color:#d9534f", "") ); } createtime2();
console.log = function () { }; console.error = function () { }; console.warn = function () { };
|