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.
18 lines
435 B
18 lines
435 B
2 years ago
|
<script>
|
||
|
import Video from "$/client/components/Video.svelte";
|
||
|
import { Hydrate } from '@jamcart/7ty/components';
|
||
|
let source = "/videos/sample.mp4";
|
||
|
let poster = "/images/sample.jpg";
|
||
|
let video_background = "rgba(0,0,0,0)";
|
||
|
|
||
|
let video_props = {
|
||
|
poster,
|
||
|
background_color: video_background,
|
||
|
source,
|
||
|
starts_on: new Date(Date.now() + 10000)
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<Hydrate component={ Video } props={ video_props } />
|