Add spinner during first pageload
This commit is contained in:
parent
72c1595245
commit
98a15a582c
2 changed files with 9 additions and 2 deletions
|
@ -18,9 +18,12 @@
|
|||
<meta property="og:url" content="vanity-eth.tk/" />
|
||||
<meta property="og:site_name" content="Vanity ETH" />
|
||||
<meta name="google-site-verification" content="DFWJVWz9IRrh-wjBxn0Y8ith5FTqMeJTSUtuJ595BEs" />
|
||||
<style>@keyframes spin{100%{transform:rotate(360deg)}}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<body style="background:#09c4c5;background:linear-gradient(140deg,#0ff0b3,#036ed9);height:100vh;margin:0;padding:0;display:flex;justify-content:center;align-items:center">
|
||||
<div id="app">
|
||||
<div class="spinner" style="pointer-events:none;width:2.5em;height:2.5em;border:.4em solid transparent;border-top-color:#fff;border-radius:50%;animation:spin 0.8s linear infinite"></div>
|
||||
</div>
|
||||
<script src="dist/index.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
/* eslint-env browser */
|
||||
|
||||
import Vue from 'vue';
|
||||
import App from './App.vue';
|
||||
|
||||
document.body.removeAttribute('style');
|
||||
|
||||
new Vue({
|
||||
el: '#app',
|
||||
render: h => h(App)
|
||||
|
|
Loading…
Add table
Reference in a new issue