| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="loading">
- <!--<img src="/images/all/loading.gif" alt="">-->
- <div class="wrap">
- <div class="outer"></div>
- </div>
- </div>
- </template>
- <style lang="scss" scoped>
- @keyframes spin {
- 0% { transform: rotate(360deg); }
- 100% { transform: rotate(0deg); }
- }
- .wrap { width: 64px; height: 64px; position: absolute;left: 50%;top:50%;margin-left:-32px;margin-top: -32px; }
- .outer {
- background-repeat: no-repeat;
- background-size:100%; position: absolute; width: 100%; height: 100%; background-image: url('/images/all/loading.png'); animation: spin 800ms infinite linear; }
- .loading {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- margin: 0 auto;
- z-index: 1000;
- width: 100%;
- height: 100%;
- text-align: center;
- background: transparent;
- >img {
- position: relative;
- top: 40%;
- width: 64px;
- height: 64px;
- }
- }
- </style>
|