-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 2.35 KB
/
Copy pathindex.html
File metadata and controls
59 lines (53 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dewplayer — démo de développement</title>
<script type="module" src="/src/index.ts"></script>
<link rel="stylesheet" href="/themes/classic.css" />
<link rel="stylesheet" href="/themes/dark.css" />
<link rel="stylesheet" href="/themes/minimal.css" />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C16 3 6 15 6 21a10 10 0 0 0 20 0C26 15 16 3 16 3Z' fill='%2300594e'/%3E%3Ccircle cx='12.5' cy='20' r='3' fill='%2356d3ba'/%3E%3C/svg%3E" />
<style>
body { font-family: system-ui, sans-serif; max-width: 42rem; margin: 2rem auto; padding: 0 1rem; }
section { margin-block: 2.5rem; }
.dark-bg { background: #16181d; padding: 1rem; border-radius: 0.5rem; }
.narrow { max-width: 18rem; } /* teste le mode compact (container query) */
</style>
</head>
<body>
<h1>Dewplayer — démo</h1>
<p>Remplacer <code>demo.mp3</code> par un vrai fichier dans <code>public/</code>.</p>
<section>
<h2>Défaut + transcription + reprise de lecture</h2>
<dew-player src="/demo.mp3" media-title="Épisode 12 — Les Web Components" storage-key="ep12">
<a href="/demo.mp3" download>Télécharger l'épisode (MP3)</a>
<div slot="transcript">
<p>Bonjour et bienvenue dans ce douzième épisode consacré aux Web Components…</p>
</div>
</dew-player>
</section>
<section>
<h2>Thème classic (hommage Flash)</h2>
<dew-player src="/demo.mp3" media-title="Thème classic" theme="classic"></dew-player>
</section>
<section class="dark-bg">
<h2 style="color:#e8eaed">Thème dark</h2>
<dew-player src="/demo.mp3" media-title="Thème dark" theme="dark"></dew-player>
</section>
<section>
<h2>Personnalisation par custom properties</h2>
<dew-player src="/demo.mp3" media-title="Thème custom"
style="--dew-accent:#7c2d8e; --dew-radius:1.5rem"></dew-player>
</section>
<section class="narrow">
<h2>Mode compact (sidebar 288 px)</h2>
<dew-player src="/demo.mp3" media-title="Compact"></dew-player>
</section>
<section>
<h2>Erreur (fichier introuvable)</h2>
<dew-player src="/introuvable.mp3" media-title="Cas d'erreur"></dew-player>
</section>
</body>
</html>