0a738e2074
重构页脚组件,增加中英文翻译支持 创建 FooterLogo 和 AnimatedButton 通用组件 实现滚动动画和按钮悬停效果
101 lines
2.6 KiB
Vue
101 lines
2.6 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted, onBeforeUnmount } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
import { useI18n } from 'vue-i18n'
|
|
import gsap from 'gsap'
|
|
import { ScrollTrigger } from 'gsap/ScrollTrigger'
|
|
|
|
gsap.registerPlugin(ScrollTrigger)
|
|
|
|
const { t } = useI18n()
|
|
const router = useRouter()
|
|
|
|
const logoRef = ref<HTMLElement | null>(null)
|
|
let logoObserver: ReturnType<typeof ScrollTrigger.observe> | null = null
|
|
|
|
const handleClick = () => {
|
|
router.push('/')
|
|
}
|
|
|
|
const logoHover = () => {
|
|
if (!logoRef.value) return
|
|
|
|
logoObserver?.kill()
|
|
|
|
const firstChild = logoRef.value.children[0] as HTMLElement
|
|
const secondChild = logoRef.value.children[1] as HTMLElement
|
|
|
|
if (!firstChild || !secondChild) return
|
|
|
|
gsap.set(secondChild, {
|
|
opacity: 0,
|
|
visibility: 'hidden',
|
|
y: 0,
|
|
})
|
|
|
|
logoObserver = ScrollTrigger.observe({
|
|
target: logoRef.value,
|
|
onHover: (self) => {
|
|
gsap.to(firstChild, {
|
|
y: -10,
|
|
duration: 0.3,
|
|
ease: 'power2.out',
|
|
})
|
|
gsap.to(secondChild, {
|
|
y: 10,
|
|
duration: 0.3,
|
|
ease: 'power2.out',
|
|
opacity: 1,
|
|
visibility: 'visible',
|
|
})
|
|
},
|
|
onHoverEnd: (self) => {
|
|
gsap.to(firstChild, {
|
|
y: 0,
|
|
duration: 0.3,
|
|
ease: 'power2.out',
|
|
})
|
|
gsap.to(secondChild, {
|
|
y: 0,
|
|
duration: 0.3,
|
|
ease: 'power2.out',
|
|
opacity: 0,
|
|
visibility: 'hidden',
|
|
})
|
|
},
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
logoHover()
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
logoObserver?.kill()
|
|
if (logoRef.value) {
|
|
gsap.killTweensOf([logoRef.value.children[0], logoRef.value.children[1]])
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex items-center cursor-pointer gap-2" @click="handleClick">
|
|
<div class="logo-icon flex h-[1.8rem] w-[1.8rem] items-center justify-center rounded-full bg-black overflow-hidden">
|
|
<video
|
|
src="/assets/logo.mp4"
|
|
class="h-[220%] w-[220%] object-cover pointer-events-none"
|
|
autoplay
|
|
muted
|
|
loop
|
|
playsinline
|
|
disablepictureinpicture
|
|
disableremoteplayback
|
|
controlslist="nodownload noplaybackrate noremoteplayback"
|
|
/>
|
|
</div>
|
|
<div ref="logoRef" class="relative flex items-center overflow-hidden min-w-[70px] md:min-w-[100px] h-10">
|
|
<span class="absolute left-0 text-[20px] font-bold leading-none tracking-wider text-white">{{ t('app.brand') }}</span>
|
|
<span class="absolute left-0 text-[12px] font-bold leading-none text-white/60 opacity-0 invisible">{{ t('app.name') }}</span>
|
|
</div>
|
|
</div>
|
|
</template> |