Zorn/test/src/pages/with-separate-audio.astro

35 lines
1.3 KiB
Text
Raw Normal View History

2024-08-16 15:20:58 -05:00
---
// Components
import {Zorn} from '@minpluto/zorn'
2024-11-04 12:47:36 -05:00
import Info from '@components/Info.astro'
import Switcher from '@components/Switcher.astro'
2024-08-16 15:20:58 -05:00
---
<Zorn
Poster="https://md.sudovanilla.org/images/wote-p-v.jpeg"
Video="https://ocean.sudovanilla.org/media/videos/The%20Mark%20On%20The%20Wall/1080.mp4"
Audio="https://ocean.sudovanilla.org/media/videos/The%20Mark%20On%20The%20Wall/audio.mp4"
CustomControls
VideoAttributes="muted"
AudioAttributes=""
/>
2024-11-04 12:47:36 -05:00
<Switcher/>
<style is:inline>a[href="/with-separate-audio"] {background: white !important;color: black !important;}</style>
2024-11-04 12:47:36 -05:00
<Info Title="The Mark On The Wall" Description="Created by Anderson Wright">
<p>Source: <a href="https://vimeo.com/989082177">https://vimeo.com/989082177</a></p>
<p>This demo pulls from: <a href="https://ocean.sudovanilla.org/media/videos/The%20Mark%20On%20The%20Wall/1080.mp4">https://ocean.sudovanilla.org/media/videos/The%20Mark%20On%20The%20Wall/1080.mp4</a></p>
<p>This demo also pulls from: <a href="https://ocean.sudovanilla.org/media/videos/The%20Mark%20On%20The%20Wall/audio.mp4">https://ocean.sudovanilla.org/media/videos/The%20Mark%20On%20The%20Wall/audio.mp4</a></p>
</Info>
2024-08-16 15:20:58 -05:00
<style>
body {
background: #010101;
color: white;
font-family: Arial, Helvetica, sans-serif;
2024-11-01 20:38:04 -05:00
a {
color: white;
}
2024-08-16 15:20:58 -05:00
}
</style>