-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3339ae9
commit d15aac3
Showing
3 changed files
with
82 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @Autor: WangYuan | ||
* @Date: 2021-05-19 09:49:33 | ||
* @LastEditors: WangYuan | ||
* @LastEditTime: 2022-02-12 17:44:00 | ||
* @LastEditTime: 2022-02-14 09:47:50 | ||
--> | ||
<!DOCTYPE html> | ||
<html lang=""> | ||
|
@@ -17,89 +17,93 @@ | |
rel="stylesheet" | ||
href="//at.alicdn.com/t/font_3164793_o7i0prkh7y.css" | ||
/> | ||
<style media="screen" type="text/css"> | ||
#appLoading { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.spinner { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
width: 40px; | ||
height: 40px; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.spinner > div { | ||
background-color: #155bd4; | ||
height: 100%; | ||
width: 6px; | ||
display: inline-block; | ||
|
||
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; | ||
animation: sk-stretchdelay 1.2s infinite ease-in-out; | ||
} | ||
|
||
.spinner .rect2 { | ||
-webkit-animation-delay: -1.1s; | ||
animation-delay: -1.1s; | ||
} | ||
|
||
.spinner .rect3 { | ||
-webkit-animation-delay: -1s; | ||
animation-delay: -1s; | ||
} | ||
|
||
.spinner .rect4 { | ||
-webkit-animation-delay: -0.9s; | ||
animation-delay: -0.9s; | ||
} | ||
|
||
@-webkit-keyframes sk-stretchdelay { | ||
0%, | ||
40%, | ||
100% { | ||
-webkit-transform: scaleY(0.4); | ||
} | ||
20% { | ||
-webkit-transform: scaleY(1); | ||
} | ||
} | ||
|
||
@keyframes sk-stretchdelay { | ||
0%, | ||
40%, | ||
100% { | ||
transform: scaleY(0.4); | ||
-webkit-transform: scaleY(0.4); | ||
} | ||
20% { | ||
transform: scaleY(1); | ||
-webkit-transform: scaleY(1); | ||
} | ||
} | ||
</style> | ||
|
||
<title><%= htmlWebpackPlugin.options.title %></title> | ||
</head> | ||
<body> | ||
<div id="appLoading"> | ||
<div class="spinner"> | ||
<div class="rect1"></div> | ||
<div class="rect2"></div> | ||
<div class="rect3"></div> | ||
<div class="rect4"></div> | ||
</div> | ||
</div> | ||
<noscript> | ||
<strong | ||
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work | ||
properly without JavaScript enabled. Please enable it to | ||
continue.</strong | ||
> | ||
</noscript> | ||
<div id="app"></div> | ||
|
||
<div id="app"> | ||
<div id="appLoading"> | ||
<div class="spinner"> | ||
<div class="rect1"></div> | ||
<div class="rect2"></div> | ||
<div class="rect3"></div> | ||
<div class="rect4"></div> | ||
</div> | ||
</div> | ||
|
||
<style media="screen" type="text/css"> | ||
#appLoading { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.spinner { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
width: 40px; | ||
height: 40px; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.spinner > div { | ||
background-color: #155bd4; | ||
height: 100%; | ||
width: 6px; | ||
display: inline-block; | ||
|
||
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; | ||
animation: sk-stretchdelay 1.2s infinite ease-in-out; | ||
} | ||
|
||
.spinner .rect2 { | ||
-webkit-animation-delay: -1.1s; | ||
animation-delay: -1.1s; | ||
} | ||
|
||
.spinner .rect3 { | ||
-webkit-animation-delay: -1s; | ||
animation-delay: -1s; | ||
} | ||
|
||
.spinner .rect4 { | ||
-webkit-animation-delay: -0.9s; | ||
animation-delay: -0.9s; | ||
} | ||
|
||
@-webkit-keyframes sk-stretchdelay { | ||
0%, | ||
40%, | ||
100% { | ||
-webkit-transform: scaleY(0.4); | ||
} | ||
20% { | ||
-webkit-transform: scaleY(1); | ||
} | ||
} | ||
|
||
@keyframes sk-stretchdelay { | ||
0%, | ||
40%, | ||
100% { | ||
transform: scaleY(0.4); | ||
-webkit-transform: scaleY(0.4); | ||
} | ||
20% { | ||
transform: scaleY(1); | ||
-webkit-transform: scaleY(1); | ||
} | ||
} | ||
</style> | ||
</div> | ||
<script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.11/vue.runtime.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/vant.min.js"></script> | ||
<script src="https://cdn.bootcss.com/moment.js/2.20.1/moment.min.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters