Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
彭翩 | a8d1202213 | 9 months ago |
ppst | 810c7c973f | 1 year ago |
ppst | ea72e02f3d | 2 years ago |
File diff suppressed because it is too large
Load Diff
@ -1,15 +1,23 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="zh">
|
<html lang="zh">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
@@include('./tpl/header.html')
|
@@include('./tpl/header.html')
|
||||||
|
<script src="./static/lib/d3@6.js"></script>
|
||||||
|
<script src="./static/lib/markmap-view.js"></script>
|
||||||
|
<script src="./static/js/main.js"></script>
|
||||||
|
<style>
|
||||||
|
.markmap-svg{
|
||||||
|
width: calc(100vw - 40px);
|
||||||
|
height: calc(100vh - 66px);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@@include('./tpl/nav.html')
|
||||||
<section>
|
<section>
|
||||||
@@include('./tpl/empty.html')
|
<svg id="markmap" class="markmap-svg"></svg>
|
||||||
</section>
|
</section>
|
||||||
@@include('./tpl/footer.html')
|
@@include('./tpl/footer.html')
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -1,35 +1,96 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
/* 背景颜色 */
|
||||||
|
/* 字体 */
|
||||||
|
/*普通字体颜色*/
|
||||||
/* 重置样式 */
|
/* 重置样式 */
|
||||||
html {
|
html {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:link, a:visited, a:hover, a:active {
|
a:link, a:visited, a:hover, a:active {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #171a2e;
|
color: #5bbe8e;
|
||||||
}
|
|
||||||
|
|
||||||
.empty-box{
|
|
||||||
width: 400px;
|
|
||||||
height: 100vh;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 底部 */
|
/* 底部 */
|
||||||
.footer-box {
|
.footer-box {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
height: 60px;
|
align-items: center;
|
||||||
background-color: #171a2e;
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 30px;
|
||||||
|
background-color: #5bbe8e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-box .content {
|
.footer-box .content {
|
||||||
margin-top: 20px;
|
font-size: 12px;
|
||||||
font-size: 14px;
|
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 头部 */
|
||||||
|
.header {
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
background-color: #fff;
|
||||||
|
color: #5bbe8e;
|
||||||
|
box-shadow: 0 4px 4px #f9f9fc;
|
||||||
|
}
|
||||||
|
.header .box {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 10%;
|
||||||
|
}
|
||||||
|
.header .box .logo {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.header .box a:link, .header .box a:visited, .header .box a:hover, .header .box a:active {
|
||||||
|
color: #5bbe8e;
|
||||||
|
}
|
||||||
|
.header .opr-box {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #5bbe8e;
|
||||||
|
}
|
||||||
|
.header .opr-box .item {
|
||||||
|
font-size: 16px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 内容 */
|
||||||
|
/* 弹层 */
|
||||||
|
.mark-box {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.mark-box .dialog-box {
|
||||||
|
width: 30%;
|
||||||
|
height: 400px;
|
||||||
|
background-color: #fff;
|
||||||
|
border: 1px solid #f9f9fc;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.show-dialog {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hide-dialog {
|
||||||
|
display: none;
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
/* 背景颜色 */
|
||||||
|
/* 字体 */
|
||||||
|
/*普通字体颜色*/
|
@ -0,0 +1 @@
|
|||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
// 无需转换
|
@ -0,0 +1,65 @@
|
|||||||
|
@import "variable.scss";
|
||||||
|
|
||||||
|
/* 重置样式 */
|
||||||
|
html {
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: $common-font-size;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
a:link,a:visited,a:hover,a:active {
|
||||||
|
text-decoration: none;
|
||||||
|
color: $common-font-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 底部 */
|
||||||
|
.footer-box {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 30px;
|
||||||
|
background-color:#5bbe8e;;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-box .content {
|
||||||
|
font-size: $small-font-size;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* 头部 */
|
||||||
|
.header{
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
background-color: #fff;
|
||||||
|
color: $common-font-color;
|
||||||
|
box-shadow: 0 4px 4px #f9f9fc;
|
||||||
|
.box{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 10%;
|
||||||
|
.logo {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
a:link,a:visited,a:hover,a:active {
|
||||||
|
color: $common-font-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.opr-box{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: $common-font-color;
|
||||||
|
.item{
|
||||||
|
font-size: $medium-font-size;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
|||||||
|
/* 背景颜色 */
|
||||||
|
|
||||||
|
$body-bg-color: #fff;
|
||||||
|
$footer-bg-color:#5bbe8e;
|
||||||
|
|
||||||
|
/* 字体 */
|
||||||
|
|
||||||
|
$common-font-size:14px;
|
||||||
|
$big-font-size:24px;
|
||||||
|
$medium-font-size:16px;
|
||||||
|
$small-font-size:12px;
|
||||||
|
$mini-font-size:8px;
|
||||||
|
|
||||||
|
$common-font-color:#5bbe8e;/*普通字体颜色*/
|
||||||
|
$footer-color:#fff;
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
|||||||
|
<header class="header">
|
||||||
|
<div class="box">
|
||||||
|
<div class="logo item"><a href="/">MARKMAP</a></div>
|
||||||
|
<div class="opr-box">
|
||||||
|
<div class="item open-new-dialog" type="new">新建目录</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
module.exports = {
|
||||||
|
entry: {
|
||||||
|
main: './src/static/js/main.js',
|
||||||
|
index: './src/static/js/index.js'
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
filename: '[name].js',
|
||||||
|
path: __dirname + '/dist'
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue