's'
This commit is contained in:
41
app/components/ScrollToTop.tsx
Normal file
41
app/components/ScrollToTop.tsx
Normal file
@@ -0,0 +1,41 @@
|
||||
'use client'
|
||||
|
||||
import { useEffect, useState } from 'react'
|
||||
|
||||
export function ScrollToTop() {
|
||||
const [isVisible, setIsVisible] = useState(false)
|
||||
|
||||
// 检查滚动位置
|
||||
const toggleVisibility = () => {
|
||||
if (window.pageYOffset > 300) {
|
||||
setIsVisible(true)
|
||||
} else {
|
||||
setIsVisible(false)
|
||||
}
|
||||
}
|
||||
|
||||
// 滚动到顶部
|
||||
const scrollToTop = () => {
|
||||
window.scrollTo({
|
||||
top: 0,
|
||||
behavior: 'smooth'
|
||||
})
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
window.addEventListener('scroll', toggleVisibility)
|
||||
return () => {
|
||||
window.removeEventListener('scroll', toggleVisibility)
|
||||
}
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<button
|
||||
className={`scroll-to-top ${isVisible ? 'show' : ''}`}
|
||||
onClick={scrollToTop}
|
||||
aria-label="Scroll to top"
|
||||
>
|
||||
<i className="fas fa-arrow-up"></i>
|
||||
</button>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user