dev-audioprocessing/pages/index.vue

65 lines
1.6 KiB
Vue
Raw Normal View History

2022-12-11 23:33:34 +00:00
<template>
2022-12-23 14:42:30 +00:00
<div>
2022-12-31 20:29:52 +00:00
<div class="container-fluid">
<div class="row">
<div class="col-12">
2023-01-01 18:40:22 +00:00
<video-background
src="video/bg-video.mp4"
style="max-height: 400px; height: 100vh;"
>
<h1 style="color: white;">Hello welcome!</h1>
</video-background>
<!-- <video muted id="myVideo" autoplay loop>-->
<!-- <source src="~/assets/video/bg-video.mp4" type="video/mp4">-->
<!-- <source src="~/assets/video/bg-video.ogg" type="video/ogg">-->
<!-- Your browser does not support HTML5 video.-->
<!-- </video>-->
2022-12-31 20:29:52 +00:00
</div>
</div>
</div>
2022-12-23 14:42:30 +00:00
<home-bar />
2022-12-31 20:05:12 +00:00
<div class="container-fluid">
<div class="row">
<div class="col-12 ">
<div class="d-flex justify-content-center adaptive mb-4">
<span class="text-muted fw-bold fs-6 ">Adaptive soundscape : <span class="" style="color: #e9c046">On</span> </span><span class="ps-3"><i class="fa-solid text-muted d-flex pt-1 mt-1 fa-chevron-right"></i></span>
</div>
</div>
</div>
</div>
2022-12-23 14:42:30 +00:00
</div>
2022-12-12 03:10:34 +00:00
</template>
2022-12-23 14:42:30 +00:00
<script>
2022-12-24 16:36:24 +00:00
2022-12-23 14:42:30 +00:00
import HomeBar from "../components/homebar";
export default {
2022-12-24 16:36:24 +00:00
components: {HomeBar},
2022-12-28 00:20:42 +00:00
methods:{
handleAnimation: function (anim) {
this.anim = anim;
}
}
2022-12-31 20:05:12 +00:00
2022-12-23 14:42:30 +00:00
}
2022-12-31 20:05:12 +00:00
</script>
<style>
#myVideo{
position: fixed;
right: 0;
bottom: 0;
2023-01-01 18:33:52 +00:00
min-width: 100%;
2022-12-31 20:05:12 +00:00
padding: 0;
margin: 0;
z-index: -99;
}
.adaptive{
position: fixed;
bottom: 0;
text-align: center;
width: 100%;
}
</style>