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.
24 lines
560 B
24 lines
560 B
2 years ago
|
<script>
|
||
|
import WTVideo from "$/client/components/WTVideo.svelte";
|
||
|
|
||
|
let media = {
|
||
|
"src": "https://learnjsthehardway.com/media/sample_video.mp4",
|
||
|
"filename": "sample.mp4",
|
||
|
"poster": "https://learnjsthehardway.com/media/sample_image.jpg",
|
||
|
"preload": "none",
|
||
|
"torrent_url": "https://learnjsthehardway.com/media/sample_video.mp4.torrent"
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
margin-right: 0.5rem;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<container class="pattern-lines-sm">
|
||
|
<WTVideo media={ media } />
|
||
|
</container>
|