summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/CSS/pandoc.css44
-rw-r--r--common/js/pandoc-menu.js31
2 files changed, 58 insertions, 17 deletions
diff --git a/common/CSS/pandoc.css b/common/CSS/pandoc.css
index a7e500b..27ec33c 100644
--- a/common/CSS/pandoc.css
+++ b/common/CSS/pandoc.css
@@ -549,17 +549,6 @@ a:hover {
549 content: '-'; 549 content: '-';
550} 550}
551 551
552nav {
553 position: sticky;
554 top: 100px;
555 margin-top: 150px;
556 display: inline-block;
557 /* order: 1; */
558 float: left;
559 box-sizing: border-box;
560 max-width: 15%;
561}
562
563body { 552body {
564 display: flex; 553 display: flex;
565 flex-direction: column; 554 flex-direction: column;
@@ -573,4 +562,37 @@ body {
573 margin: 0 auto; 562 margin: 0 auto;
574 box-sizing: border-box; 563 box-sizing: border-box;
575 max-width: 40em; 564 max-width: 40em;
565}
566
567/* my set */
568
569/* 侧边栏 */
570.side-menu {
571 position: sticky;
572 float: left;
573 /* 上边没有东西时,距离顶部100px
574 * 有东西时,维持100px距离
575 */
576 top: 100px;
577 margin-top: 100px;
578 /* border-box使元素的内边距和边框不会撑大元素的尺寸 */
579 box-sizing: border-box;
580
581 /* 自身尺寸 */
582 width: 300px;
583 max-height: 600px;
584 overflow-y: auto;
585
586 /* 颜色与内部设置 */
587 background-color: #f0f0f0;
588 border: 1px solid #daa520;
589 padding-top: 30px;
590 padding-right: 20px;
591 padding-bottom: 20px;
592}
593
594#toggle-nav {
595 position: absolute;
596 top: 10px;
597 right: 10px;
576} \ No newline at end of file 598} \ No newline at end of file
diff --git a/common/js/pandoc-menu.js b/common/js/pandoc-menu.js
index af9153b..84fd020 100644
--- a/common/js/pandoc-menu.js
+++ b/common/js/pandoc-menu.js
@@ -1,13 +1,34 @@
1document.addEventListener('DOMContentLoaded', function () { 1document.addEventListener('DOMContentLoaded', function () {
2 const headings = document.querySelectorAll('h1, h2, h3, h4, h5, h6'); 2 const menudiv = document.createElement('div');
3 menudiv.className = 'side-menu';
4
5 const menutitle = document.createElement('div');
6 menutitle.textContent = document.title;
7 menudiv.appendChild(menutitle);
8
9 // a button to open/close nav list
10 const toggleNavButton = document.createElement('button');
11 toggleNavButton.id = 'toggle-nav';
12 toggleNavButton.textContent = '关闭';
13 menudiv.appendChild(toggleNavButton);
14
15 // Add click event listener to the button
16 toggleNavButton.addEventListener('click', () => {
17 nav.style.display = nav.style.display === 'none' ? 'block' : 'none';
18 toggleNavButton.textContent = toggleNavButton.textContent === '关闭' ? '打开' : '关闭';
19 });
20
21 // nav list itself
3 const nav = document.createElement('nav'); 22 const nav = document.createElement('nav');
4 document.querySelector('.pandoc').insertBefore(nav, document.querySelector('.pandoc').firstChild); 23 menudiv.appendChild(nav);
24 document.querySelector('.pandoc').insertBefore(menudiv, document.querySelector('.pandoc').firstChild);
5 const topLevelList = document.createElement('ul'); 25 const topLevelList = document.createElement('ul');
6 nav.appendChild(topLevelList); 26 nav.appendChild(topLevelList);
7 27
8 let currentLevel = topLevelList; 28 let currentLevel = topLevelList;
9 let lastLevel = 1; 29 let lastLevel = 1;
10 30
31 const headings = document.querySelectorAll('h1, h2, h3, h4, h5, h6');
11 headings.forEach(heading => { 32 headings.forEach(heading => {
12 const listItem = document.createElement('li'); 33 const listItem = document.createElement('li');
13 const anchor = document.createElement('a'); 34 const anchor = document.createElement('a');
@@ -31,9 +52,7 @@ document.addEventListener('DOMContentLoaded', function () {
31 lastLevel = level; 52 lastLevel = level;
32 }); 53 });
33 54
34 // document.body.insertBefore(nav, document.body.firstChild); 55 // Add functionality for expanding/collapsing menu list
35
36 // Add functionality for expanding/collapsing
37 const navLinks = document.querySelectorAll('nav ul li'); 56 const navLinks = document.querySelectorAll('nav ul li');
38 navLinks.forEach(link => { 57 navLinks.forEach(link => {
39 const sublist = link.querySelector('ul'); 58 const sublist = link.querySelector('ul');
@@ -49,4 +68,4 @@ document.addEventListener('DOMContentLoaded', function () {
49 }); 68 });
50 } 69 }
51 }); 70 });
52}); \ No newline at end of file 71});