mirror of https://github.com/webpack/webpack.git
84 lines
1.8 KiB
HTML
84 lines
1.8 KiB
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.spinner {
|
|
font-size: 10px;
|
|
margin: 50px auto;
|
|
text-indent: -9999em;
|
|
width: 11em;
|
|
height: 11em;
|
|
border-radius: 50%;
|
|
background: #595959;
|
|
background: linear-gradient(
|
|
to right,
|
|
#595959 10%,
|
|
rgba(89, 89, 89, 0) 42%
|
|
);
|
|
position: relative;
|
|
animation: spin 1.4s infinite linear;
|
|
transform: translateZ(0);
|
|
}
|
|
.spinner:before {
|
|
width: 50%;
|
|
height: 50%;
|
|
background: #595959;
|
|
border-radius: 100% 0 0 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
content: "";
|
|
}
|
|
.spinner:after {
|
|
background: white;
|
|
width: 75%;
|
|
height: 75%;
|
|
border-radius: 50%;
|
|
content: "";
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
@-webkit-keyframes spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
@keyframes spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- A spinner -->
|
|
<div class="spinner"></div>
|
|
|
|
<!-- This script only contains boostrapping logic -->
|
|
<!-- It will load all other scripts if necessary -->
|
|
<script src="/dist/aaa/app.js" async></script>
|
|
|
|
<!-- These script tags are optional -->
|
|
<!-- They improve loading performance -->
|
|
<!-- Omitting them will add an additional round trip -->
|
|
<script src="/dist/bbb/mfeBBB.js" async></script>
|
|
<script src="/dist/ccc/mfeCCC.js" async></script>
|
|
|
|
<!-- All these scripts are pretty small ~5kb -->
|
|
<!-- For optimal performance they can be inlined -->
|
|
</body>
|
|
</html>
|