1
0
mirror of synced 2025-12-10 07:48:12 +08:00
This commit is contained in:
binaryify
2019-05-22 16:38:34 +08:00
parent ef1800c7b7
commit 1c544e9f8a
12 changed files with 111 additions and 0 deletions

1
docs/index.html Normal file
View File

@@ -0,0 +1 @@
<!DOCTYPE html><html><head><meta name=renderer content=webkit><meta name=description content="使用 Vue、Vuex 制作的俄罗斯方块"><meta name=keywords content=俄罗斯方块,Tetris,Vue,Vuex,JavaScript><meta name=format-detection content="telephone=no"><script>;(function(){var w=parseInt(window.screen.width),s=w/640,u=navigator.userAgent.toLowerCase(),m='<meta name="viewport" content="width=640,';if(/android (\d+\.\d+)/.test(u)){if(parseFloat(RegExp.$1)>2.3)m+='minimum-scale='+s+',maximum-scale='+s+',';}else{m+='user-scalable=no,';}m+='target-densitydpi=device-dpi">';document.write(m);}());</script><meta charset=UTF-8><title>俄罗斯方块</title><link rel=stylesheet href=static/loader.css><link href=./static/css/app.d61ac19cf465110d89eed4b8bfa02a13.css rel=stylesheet></head><body><div id=root><div class=load><div class=loader>加载中...</div></div></div><script type=text/javascript src=./static/js/manifest.553a68fc71cea2701df9.js></script><script type=text/javascript src=./static/js/vendor.0469b8d696b0c894616b.js></script><script type=text/javascript src=./static/js/app.4a0e998ec638005a31ef.js></script></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
!function(e){function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r=window.webpackJsonp;window.webpackJsonp=function(t,c,i){for(var u,a,f,s=0,l=[];s<t.length;s++)a=t[s],o[a]&&l.push(o[a][0]),o[a]=0;for(u in c)Object.prototype.hasOwnProperty.call(c,u)&&(e[u]=c[u]);for(r&&r(t,c,i);l.length;)l.shift()();if(i)for(s=0;s<i.length;s++)f=n(n.s=i[s]);return f};var t={},o={2:0};n.e=function(e){function r(){u.onerror=u.onload=null,clearTimeout(a);var n=o[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),o[e]=void 0)}var t=o[e];if(0===t)return new Promise(function(e){e()});if(t)return t[2];var c=new Promise(function(n,r){t=o[e]=[n,r]});t[2]=c;var i=document.getElementsByTagName("head")[0],u=document.createElement("script");u.type="text/javascript",u.charset="utf-8",u.async=!0,u.timeout=12e4,n.nc&&u.setAttribute("nonce",n.nc),u.src=n.p+"static/js/"+e+"."+{0:"0469b8d696b0c894616b",1:"4a0e998ec638005a31ef"}[e]+".js";var a=setTimeout(r,12e4);return u.onerror=u.onload=r,i.appendChild(u),c},n.m=e,n.c=t,n.i=function(e){return e},n.d=function(e,r,t){n.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:t})},n.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(r,"a",r),r},n.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="./",n.oe=function(e){throw console.error(e),e}}([]);
//# sourceMappingURL=manifest.553a68fc71cea2701df9.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

89
docs/static/loader.css vendored Normal file
View File

@@ -0,0 +1,89 @@
body{
background: #009688;
padding: 0;
margin: 0;
touch-action: manipulation;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
}
.load{
width:240px;
height:240px;
position:absolute;
top:50%;
left:50%;
margin:-120px 0 0 -120px;
color:#efcc19;
-webkit-animation:fadeIn 2s infinite ease-in-out;
animation:fadeIn 2s infinite ease-in-out;
-webkit-animation-delay:2s;
animation-delay:2s;
opacity:0;
}
.load .loader,.load .loader:before,.load .loader:after{
background:#efcc19;
-webkit-animation:load 1s infinite ease-in-out;
animation:load 1s infinite ease-in-out;
width:1em;
height:4em
}
.load .loader:before,.load .loader:after{
position:absolute;
top:0;
content:''
}
.load .loader:before{
left:-1.5em;
-webkit-animation-delay:-0.32s;
animation-delay:-0.32s
}
.load .loader{
text-indent:-9999em;
margin:8em auto;
position:relative;
font-size:11px;
-webkit-animation-delay:-0.16s;
animation-delay:-0.16s
}
.load .loader:after{
left:1.5em
}
@-webkit-keyframes load{
0%,80%,100%{
box-shadow:0 0 #efcc19;
height:4em
}
40%{
box-shadow:0 -2em #efcc19;height:5em
}
}
@keyframes load{
0%,80%,100%{
box-shadow:0 0 #efcc19;
height:4em
}
40%{
box-shadow:0 -2em #efcc19;
height:5em
}
}
@-webkit-keyframes fadeIn{
0%{
opacity:0;
}
100%{
opacity:1;
}
}
@keyframes fadeIn{
0%{
opacity:0;
}
100%{
opacity:1;
}
}

BIN
docs/static/music.mp3 vendored Normal file

Binary file not shown.

BIN
docs/static/qr.jpeg vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB