md/src/components/Loading.vue

49 lines
919 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>
2020-07-13 21:13:46 +08:00
<div class="loading-text">致力于让MD编辑更简单</div>
</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>