You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
450 B
17 lines
450 B
2 years ago
|
<script>
|
||
|
import Video from "$/client/components/Video.svelte";
|
||
|
let source = "https://learnjsthehardway.com/media/sample_video.mp4";
|
||
|
let poster = "https://learnjsthehardway.com/media/sample_image.jpg";
|
||
|
let video_background = "rgb(0,0,0)";
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
container {
|
||
|
display: flex;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<container style="--aspect-ratio: 16/9;">
|
||
|
<Video poster={ poster } background_color={video_background } source={ source } />
|
||
|
</container>
|