mirror of
https://github.com/woodchen-ink/md-wechat.git
synced 2025-07-18 05:32:02 +08:00
* update framework to uni-app * fix: bug fix * fix: bug fix * 修改输出路径 * feat: publicPath * feat: manifest update * fix: cssEditor theme * fix: style * style: format code with prettier * fix: table style & copy style on the night mode * fix: upload image * fix: style Co-authored-by: yanglbme <szuyanglb@outlook.com>
48 lines
860 B
Vue
48 lines
860 B
Vue
<template>
|
|
<div class="loading" id="loading">
|
|
<div class="loading-wrapper">
|
|
<div class="loading-anim"></div>
|
|
<div class="loading-text">致力于让 Markdown 编辑更简单</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script></script>
|
|
|
|
<style lang="less" scoped>
|
|
.loading-wrapper {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|
|
.loading {
|
|
text-align: center;
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
z-index: 99999;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.loading_night {
|
|
background-color: #303133;
|
|
}
|
|
|
|
.loading-text {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
margin-top: 26px;
|
|
color: #303133;
|
|
}
|
|
|
|
.loading-anim {
|
|
display: inline-block;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: url("../assets/images/favicon.png") no-repeat;
|
|
background-size: cover;
|
|
}
|
|
</style>
|