chore: consolidate eject examples (#162)

This commit is contained in:
Darius Cepulis
2025-11-04 15:10:59 -06:00
committed by GitHub
parent e644928df1
commit b3bfa0cafd
35 changed files with 364 additions and 667 deletions
+14
View File
@@ -0,0 +1,14 @@
import '@videojs/html/skins/frosted';
document.getElementById('app').innerHTML = /* html */ `
<video-provider>
<media-skin-frosted style="border-radius: 2rem; width: 100%; margin: 2rem auto; aspect-ratio: 16/9">
<video
slot="media"
src="https://stream.mux.com/fXNzVtmtWuyz00xnSrJg4OJH6PyNo6D02UzmgeKGkP5YQ/high.mp4"
poster="https://image.mux.com/fXNzVtmtWuyz00xnSrJg4OJH6PyNo6D02UzmgeKGkP5YQ/thumbnail.webp"
playsinline
></video>
</media-skin-frosted>
</video-provider>
`;