123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no">
- <meta http-equiv="refresh" content="5;url=mm.html">
-
- <title>【维护中!稍后再试!】</title>
- <style>html, body{height:95%;}body{background: #0f3854;background: -webkit-radial-gradient(center ellipse, #0a2e38 0%, #000000 70%);background: radial-gradient(ellipse at center, #0a2e38 0%, #000000 70%);background-size: 100%;}p{margin:0;padding:0;}#clock{font-family: 'Share Tech Mono', monospace;color: #ffffff;text-align: center;position: absolute;left: 50%;top: 50%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);color: #daf6ff;text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 0);}#clock .time{letter-spacing: 0.05em;font-size: 60px;padding: 5px 0;}#clock .date{letter-spacing:0.1em;font-size:15px;}#clock .text{letter-spacing: 0.1em;font-size:12px;padding:20px 0 0;}</style>
- <script type="text/javascript" src="/js2/time.js"></script>
- </head>
- <body>
- <div id="clock">
- <p class="date">.......【建设中!!!】.......</p>
- <p class="date">.......【请稍后!!!】.......</p>
- <p class="date">.......【再访问!!!】.......</p>
- <p class="time">{{ time }}</p>
- <p class="text">{{ date }}</p>
- </div>
- <script>
- var clock = new Vue({
- el: '#clock',
- data: {
- time: '',
- date: ''
- }
- });
- var week = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'];
- var timerID = setInterval(updateTime, 1000);
- updateTime();
- function updateTime() {
- var cd = new Date();
- clock.time = zeroPadding(cd.getHours(), 2) + ':' + zeroPadding(cd.getMinutes(), 2) + ':' + zeroPadding(cd.getSeconds(), 2);
- clock.date = zeroPadding(cd.getFullYear(), 4) + '-' + zeroPadding(cd.getMonth()+1, 2) + '-' + zeroPadding(cd.getDate(), 2) + ' ' + week[cd.getDay()];
- };
- function zeroPadding(num, digit) {
- var zero = '';
- for(var i = 0; i < digit; i++) {
- zero += '0';
- }
- return (zero + num).slice(-digit);
- }</script>
- </body>
-
- </html>
|