- added imageUploader
- fixed loading songs - cleanup utils - added some helper class - cleanup preparing of WEBGL2 - added 3D wave - added light-support - added configs - added gui-events for playing, shuffling and playlist
This commit is contained in:
parent
300b6c4106
commit
9d5259767c
34 changed files with 1631 additions and 418 deletions
27
out/tpl/image.tpl
Normal file
27
out/tpl/image.tpl
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<div id="image-upload">
|
||||
<label for="image" class="button">
|
||||
Image-Upload (Only Local!)
|
||||
</label>
|
||||
<input type="file" id="image" accept="image/*|video/*">
|
||||
|
||||
<form>
|
||||
<label class="input floating-label">
|
||||
<input type="url" id="url" value="$value$">
|
||||
<span class="input-label">URL</span>
|
||||
<span class="focus"></span>
|
||||
</label>
|
||||
|
||||
<p>You only want to change the color? do it!</p>
|
||||
<label class="input floating-label color-picker" for="color">
|
||||
<span id="colorBlob" style="background-color: $bgValue$"></span>
|
||||
<input type="color" id="color" value="$bgValue$">
|
||||
<span class="input-label">Color</span>
|
||||
<span class="focus"></span>
|
||||
</label>
|
||||
|
||||
<label class="input">
|
||||
<input class="range" type="range" id="alphaValue" min="0" max="1" value="$alphaValue$" step="0.1">
|
||||
<span class="input-label">Alpha</span>
|
||||
</label>
|
||||
</form>
|
||||
</div>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<playlist-item class="playlist-item" data-index="$index$">
|
||||
<playlist-item class="playlist-item $active$" data-index="$index$">
|
||||
<div class="playlist-item-number">$nr$</div>
|
||||
<div class="playlist-item-title">$title$</div>
|
||||
</playlist-item>
|
||||
Loading…
Add table
Add a link
Reference in a new issue