Rework frontend

This commit is contained in:
F4ilji
2025-03-23 00:38:16 +05:00
parent 17518ceed2
commit 49072e50c7
438 changed files with 14375 additions and 20015 deletions
@@ -0,0 +1,31 @@
<script>
export default {
name: "ScrollTimeline"
}
</script>
<template>
<div id="progress"></div>
</template>
<style scoped>
@keyframes grow-progress {
from { transform: scaleX(0); }
to { transform: scaleX(1); }
}
#progress {
top: 0;
height: 2px;
background: #294F8C;
z-index: 99;
width: 100%;
position: fixed;
transform-origin: 0 50%;
animation: grow-progress auto linear;
animation-timeline: scroll();
}
</style>