Fix sticky sidebar
This commit is contained in:
parent
458e262a26
commit
f997280ab1
2 changed files with 4 additions and 4 deletions
|
|
@ -119,11 +119,11 @@ export function scroll2Top (offset = 0) {
|
|||
}
|
||||
|
||||
export function sticky () {
|
||||
const dom = document.querySelector('section.cover')
|
||||
const coverHeight = dom.getBoundingClientRect().height
|
||||
sticky.dom = sticky.dom || document.querySelector('section.cover')
|
||||
const coverHeight = sticky.dom.getBoundingClientRect().height
|
||||
|
||||
return (function () {
|
||||
if (window.pageYOffset >= coverHeight || dom.classList.contains('hidden')) {
|
||||
if (window.pageYOffset >= coverHeight || sticky.dom.classList.contains('hidden')) {
|
||||
document.body.classList.add('sticky')
|
||||
sticky.noSticky = false
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ export function renderCover (content) {
|
|||
return
|
||||
}
|
||||
renderCover.dom.classList.add('show')
|
||||
if (renderCover.rendered) return
|
||||
if (renderCover.rendered) return event.sticky()
|
||||
|
||||
// render cover
|
||||
let html = markdown(content)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue