Files
ntspi-app/resources/js/Components/ClientScrollTimeline.vue
T
2024-09-19 16:06:49 +05:00

31 lines
439 B
Vue

<script>
export default {
name: "ClientScrollTimeline"
}
</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>