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.
11 lines
445 B
11 lines
445 B
2 years ago
|
<script>
|
||
|
import HLSVideo from "$/client/components/HLSVideo.svelte";
|
||
|
let source = "https://learnjsthehardway.com/media/sample_video.mp4";
|
||
|
let poster = "https://learnjsthehardway.com/media/sample_image.jpg";
|
||
|
let video_background = "rgba(0,0,0,0)";
|
||
|
</script>
|
||
|
|
||
|
<container class="pattern-lines-sm">
|
||
|
<HLSVideo poster={ poster } background_color={video_background } source={ source } starts_on={ new Date(Date.now() + 10000) } />
|
||
|
</container>
|