2020-02-11 17:51:04 +08:00
|
|
|
<template>
|
|
|
|
<div class="loading" id="loading">
|
2020-06-25 17:20:37 +08:00
|
|
|
<div class="loading-wrapper">
|
|
|
|
<div class="loading-anim"></div>
|
2020-07-13 23:48:09 +08:00
|
|
|
<div class="loading-text">致力于让 Markdown 编辑更简单</div>
|
2020-06-25 17:20:37 +08:00
|
|
|
</div>
|
2020-02-11 17:51:04 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
</script>
|
|
|
|
|
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-04 00:48:27 +08:00
|
|
|
.loading {
|
|
|
|
text-align: center;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 99999;
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading_night {
|
|
|
|
background-color: #303133;
|
|
|
|
}
|
2020-02-11 17:51:04 +08:00
|
|
|
|
2020-07-04 00:48:27 +08:00
|
|
|
.loading-text {
|
2020-07-13 21:13:46 +08:00
|
|
|
font-size: 18px;
|
2020-07-04 00:48:27 +08:00
|
|
|
font-weight: bold;
|
2020-07-13 21:13:46 +08:00
|
|
|
margin-top: 26px;
|
|
|
|
color: #303133;
|
2020-07-04 00:48:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.loading-anim {
|
|
|
|
display: inline-block;
|
2020-07-13 21:13:46 +08:00
|
|
|
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>
|