md/src/components/Loading.vue

48 lines
860 B
Vue
Raw Normal View History

2020-02-11 17:51:04 +08:00
<template>
<div class="loading" id="loading">
<div class="loading-wrapper">
<div class="loading-anim"></div>
<div class="loading-text">致力于让 Markdown 编辑更简单</div>
2020-02-11 17:51:04 +08:00
</div>
</div>
2020-02-11 17:51:04 +08:00
</template>
2020-10-20 20:03:36 +08:00
<script></script>
2020-02-11 17:51:04 +08:00
2020-07-13 21:13:46 +08:00
<style lang="less" scoped>
.loading-wrapper {
position: fixed;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
2020-07-13 21:13:46 +08:00
}
2020-07-04 00:48:27 +08:00
.loading {
text-align: center;
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 99999;
background-color: #f2f2f2;
2020-07-04 00:48:27 +08:00
}
.loading_night {
background-color: #303133;
2020-07-04 00:48:27 +08:00
}
2020-02-11 17:51:04 +08:00
2020-07-04 00:48:27 +08:00
.loading-text {
font-size: 18px;
font-weight: bold;
margin-top: 26px;
color: #303133;
2020-07-04 00:48:27 +08:00
}
.loading-anim {
display: inline-block;
width: 100px;
height: 100px;
background: url('../assets/images/favicon.png') no-repeat;
background-size: cover;
2020-07-04 00:48:27 +08:00
}
2020-02-11 17:51:04 +08:00
</style>