-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moving picobel-player-default WC into separate demo page
- Loading branch information
1 parent
a538fb1
commit eb55601
Showing
3 changed files
with
95 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Picobel.js Test Page</title> | ||
|
||
<!-- Load the Picobel CSS --> | ||
<link | ||
rel="stylesheet" | ||
href="../src/css/picobel.all.css" | ||
type="text/css" | ||
/> | ||
</head> | ||
<body style="font-family: sans-serif"> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li> | ||
<a href="composable.html">Composable</a> | ||
</li> | ||
<li><a href="types.html">Types</a></li> | ||
<li><a href="types.html">Manual</a></li> | ||
<li><a href="component.html">Web Component</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="generic-wrapper"> | ||
<h1>Testing Picobel: web component default</h1> | ||
<h2> | ||
<code><picobel-player-default></code> | ||
</h2> | ||
|
||
<picobel-player-default class="foo"> | ||
<audio | ||
src="https://eatenbymonsters.com/audio/christmas/web/MasterSlashSlave_AllIWantForChristmas.mp3" | ||
title="All I Want for Christmas" | ||
data-artist="Master Slash Slave" | ||
controls | ||
> | ||
Your browser does not support the | ||
<code>audio</code> element. | ||
</audio> | ||
</picobel-player-default> | ||
|
||
<h2> | ||
<code><picobel-player-default></code> with multiple audio | ||
nodes | ||
</h2> | ||
|
||
<picobel-player-default> | ||
<audio | ||
src="https://eatenbymonsters.com/audio/christmas/web/MasterSlashSlave_AllIWantForChristmas.mp3" | ||
title="All I Want for Christmas" | ||
data-artist="Master Slash Slave" | ||
controls | ||
> | ||
Your browser does not support the | ||
<code>audio</code> element. | ||
</audio> | ||
<audio | ||
src="./audio-examples/taken-at-the-flood.mp3" | ||
title="Taken at the Flood" | ||
data-artist="Freeze Them" | ||
controls | ||
> | ||
Your browser does not support the | ||
<code>audio</code> element. | ||
</audio> | ||
</picobel-player-default> | ||
</div> | ||
|
||
<script | ||
type="text/javascript" | ||
src="../build/picobel-component-default.js" | ||
></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters