diff options
author | 2025-01-07 21:48:26 +0800 | |
---|---|---|
committer | 2025-01-07 21:48:26 +0800 | |
commit | 7cbfaf24d0bf669bde02bedb91befe50aa4f2b5d (patch) | |
tree | dc4df02b287c43ddebf5d5f30a89d5163255d0a1 | |
parent | 4d88ef666eee1b6f191f6e85b00acf8d5a2d1899 (diff) | |
download | myweb-7cbfaf24d0bf669bde02bedb91befe50aa4f2b5d.tar.gz myweb-7cbfaf24d0bf669bde02bedb91befe50aa4f2b5d.zip |
Add a button for nav list, and set stylesdev
The nav list(named pandoc-menu) is an important part of code
blogs. However, it was always shown, no matter what you use, pc, mobile
or tablet. It makes chaos for mobile/tablet, because width of these
devices is insufficient. Then the list covers normal content.
In this commit, a button is used to control the open/close of nav list,
and button & list are in the same parent, who comtrols the position and
flow of them.
Although it's still ugly, we've moved a step for the better, isn't it?
-rw-r--r-- | common/CSS/pandoc.css | 44 | ||||
-rw-r--r-- | common/js/pandoc-menu.js | 31 |
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 | ||
552 | nav { | ||
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 | |||
563 | body { | 552 | body { |
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 @@ | |||
1 | document.addEventListener('DOMContentLoaded', function () { | 1 | document.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 | }); |