added a leftbar
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Xeovalyte 2023-02-12 10:59:55 +01:00
parent 57a50a5810
commit e1ed3d53db
6 changed files with 48 additions and 6 deletions

View File

@ -0,0 +1,17 @@
<template>
<div class="fixed hidden lg:block left-3 top-1/2 text-primary-500 space-y-1 z-50">
<div @click="scrollToElement('heading')" class="py-2 hover:cursor-pointer">
<div class="h-1 rounded-full bg-primary-500 transition-all duration-300 hover:cursor-pointer" :class="route.hash === '#heading' ? 'w-16' : 'w-8'" />
</div>
<div @click="scrollToElement('about')" class="py-2 hover:cursor-pointer">
<div class="h-1 rounded-full bg-primary-500 transition-all duration-300 hover:cursor-pointer" :class="route.hash === '#about' ? 'w-16' : 'w-8'" />
</div>
<div @click="scrollToElement('skills')" class="py-2 hover:cursor-pointer">
<div class="h-1 rounded-full bg-primary-500 transition-all duration-300 hover:cursor-pointer" :class="route.hash === '#skills' ? 'w-16' : 'w-8'" />
</div>
</div>
</template>
<script setup>
const route = useRoute()
</script>

View File

@ -7,7 +7,7 @@
> >
<img <img
v-animate="{ preset: 'slide-left', delay: 300 }" v-animate="{ preset: 'slide-left', delay: 300 }"
src="../assets/icons/logo.svg" src="../../assets/icons/logo.svg"
alt="Logo Xeovalyte" alt="Logo Xeovalyte"
width="150" width="150"
/> />
@ -31,6 +31,7 @@
</div> </div>
<Icon <Icon
@click="scrollToElement('about')"
size="2em" size="2em"
name="ph:arrow-fat-line-down" name="ph:arrow-fat-line-down"
class="absolute bottom-20 basis-full animate-bounce hover:cursor-pointer" class="absolute bottom-20 basis-full animate-bounce hover:cursor-pointer"

View File

@ -0,0 +1,4 @@
export default function (hash) {
const element = document.getElementById(hash)
element.scrollIntoView({ behavior: 'smooth' })
}

View File

@ -1,9 +1,29 @@
<template> <template>
<div class="h-screen snap-y snap-mandatory overflow-y-auto overflow-x-hidden bg-dark-200"> <LayoutLeftbar />
<Heading /> <div id="observe" class="h-screen snap-y snap-mandatory overflow-y-auto overflow-x-hidden bg-dark-200">
<About /> <SlidesHeading id="heading" />
<Skills /> <SlidesAbout id="about" />
<SlidesSkills id="skills" />
</div> </div>
</template> </template>
<script setup></script> <script setup>
const router = useRouter()
const callback = (entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
router.replace({ hash: '#' + entry.target.id})
}
})
}
onMounted(() => {
let targets = document.querySelectorAll('section')
const observer = new IntersectionObserver(callback, { root: document.querySelector('#observe'), threshold: 0.9 })
targets.forEach(target => {
observer.observe(target)
})
})
</script>