movie-night-web/src/components/LoadingIcon.vue

17 lines
385 B
Vue
Raw Normal View History

2025-04-22 19:32:12 -05:00
<script lang="ts" setup></script>
<template>
<video
2025-04-22 21:22:11 -05:00
alt="Loading"
2025-04-22 19:32:12 -05:00
autoplay
class="flex absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
loop
muted
2025-04-22 20:22:17 -05:00
>
2025-04-22 21:22:11 -05:00
<source src="/assets/img/movie-loader.mov" type="video/quicktime" />
2025-04-22 20:22:17 -05:00
<source src="/assets/img/movie-loader.webm" type="video/webm" />
</video>
2025-04-22 19:32:12 -05:00
</template>
<style scoped></style>