mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
126 lines
3.6 KiB
JavaScript
126 lines
3.6 KiB
JavaScript
import { useGlobal } from '@/lib/global'
|
|
import { useEffect, useState } from 'react'
|
|
import Typed from 'typed.js'
|
|
import CONFIG_HEXO from '../config_hexo'
|
|
|
|
let wrapperTop = 0
|
|
let windowTop = 0
|
|
let autoScroll = false
|
|
|
|
/**
|
|
*
|
|
* @returns 头图
|
|
*/
|
|
const Header = props => {
|
|
const [typed, changeType] = useState()
|
|
const { isDarkMode } = useGlobal()
|
|
const { siteInfo } = props
|
|
useEffect(() => {
|
|
scrollTrigger()
|
|
updateHeaderHeight()
|
|
updateTopNav()
|
|
if (!typed && window && document.getElementById('typed')) {
|
|
changeType(
|
|
new Typed('#typed', {
|
|
strings: CONFIG_HEXO.HOME_BANNER_GREETINGS,
|
|
typeSpeed: 200,
|
|
backSpeed: 100,
|
|
backDelay: 400,
|
|
showCursor: true,
|
|
smartBackspace: true
|
|
})
|
|
)
|
|
}
|
|
window.addEventListener('scroll', scrollTrigger)
|
|
window.addEventListener('resize', updateHeaderHeight)
|
|
return () => {
|
|
window.removeEventListener('scroll', scrollTrigger)
|
|
window.removeEventListener('resize', updateHeaderHeight)
|
|
}
|
|
})
|
|
|
|
const autoScrollEnd = () => {
|
|
if (autoScroll) {
|
|
windowTop = window.scrollY
|
|
autoScroll = false
|
|
}
|
|
}
|
|
|
|
const scrollTrigger = () => {
|
|
const scrollS = window.scrollY
|
|
const nav = document.querySelector('#sticky-nav')
|
|
|
|
if (scrollS < 500) {
|
|
nav && nav.classList.replace('bg-white', 'bg-none')
|
|
nav && nav.classList.replace('text-black', 'text-white')
|
|
nav && nav.classList.replace('border', 'border-transparent')
|
|
} else {
|
|
nav && nav.classList.replace('bg-none', 'bg-white')
|
|
nav && nav.classList.replace('text-white', 'text-black')
|
|
nav && nav.classList.replace('border-transparent', 'border')
|
|
}
|
|
|
|
// 自动滚动
|
|
if ((scrollS > windowTop) & (scrollS < window.innerHeight) && !autoScroll
|
|
) {
|
|
autoScroll = true
|
|
window.scrollTo({ top: wrapperTop, behavior: 'smooth' })
|
|
setTimeout(autoScrollEnd, 500)
|
|
}
|
|
if ((scrollS < windowTop) && (scrollS < window.innerHeight) && !autoScroll) {
|
|
autoScroll = true
|
|
window.scrollTo({ top: 0, behavior: 'smooth' })
|
|
setTimeout(autoScrollEnd, 500)
|
|
}
|
|
windowTop = scrollS
|
|
|
|
updateTopNav()
|
|
}
|
|
|
|
const updateTopNav = () => {
|
|
if (!isDarkMode) {
|
|
const stickyNavElement = document.getElementById('sticky-nav')
|
|
if (window.scrollY < window.innerHeight) {
|
|
stickyNavElement?.classList?.add('dark')
|
|
} else {
|
|
stickyNavElement?.classList?.remove('dark')
|
|
}
|
|
}
|
|
}
|
|
|
|
function updateHeaderHeight () {
|
|
setTimeout(() => {
|
|
const wrapperElement = document.getElementById('wrapper')
|
|
wrapperTop = wrapperElement?.offsetTop
|
|
}, 500)
|
|
}
|
|
|
|
return (
|
|
<header
|
|
id="header"
|
|
className="duration-500 md:bg-fixed w-full bg-cover bg-center h-screen bg-black text-white"
|
|
style={{
|
|
backgroundImage:
|
|
`linear-gradient(rgba(0, 0, 0, 0.8), rgba(0,0,0,0.2), rgba(0,0,0,0.2), rgba(0,0,0,0.2), rgba(0, 0, 0, 0.8) ),url("${siteInfo?.pageCover}")`
|
|
}}
|
|
>
|
|
<div className="absolute flex flex-col h-full items-center justify-center w-full font-sans">
|
|
<div className='text-4xl md:text-5xl text-white shadow-text'>{siteInfo?.title}</div>
|
|
<div className='mt-2 h-12 items-center text-center shadow-text text-white text-lg'>
|
|
<span id='typed'/>
|
|
</div>
|
|
</div>
|
|
<div
|
|
onClick={() => {
|
|
window.scrollTo({ top: wrapperTop, behavior: 'smooth' })
|
|
}}
|
|
className="cursor-pointer w-full text-center py-4 text-3xl absolute bottom-10 text-white"
|
|
>
|
|
<i className='animate-bounce fas fa-angle-down'/>
|
|
</div>
|
|
</header>
|
|
)
|
|
}
|
|
|
|
export default Header
|