more work on containerchan

This commit is contained in:
czaks
2014-04-06 21:39:33 +02:00
parent e99c638e26
commit 97792ff387
4 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 B

View File

@@ -1,28 +0,0 @@
/* This file is dedicated to the public domain; you may do as you wish with it. */
if (window.addEventListener) window.addEventListener("load", function(e) {
document.getElementById("playerheader").appendChild(settingsMenu);
var video = document.getElementsByTagName("video")[0];
var loopLinks = [document.getElementById("loop0"), document.getElementById("loop1")];
function setupLoopLink(i) {
loopLinks[i].addEventListener("click", function(e) {
if (!e.shiftKey && !e.ctrlKey && !e.altKey && !e.metaKey) {
video.loop = (i != 0);
if (i != 0 && video.currentTime >= video.duration) {
video.currentTime = 0;
}
loopLinks[i].style.fontWeight = "bold";
loopLinks[1-i].style.fontWeight = "inherit";
e.preventDefault();
}
}, false);
}
for (var i = 0; i < 2; i++) {
setupLoopLink(i);
}
video.muted = (setting("videovolume") == 0);
video.volume = setting("videovolume");
video.play();
}, false);

View File

@@ -1,39 +0,0 @@
/* This file is dedicated to the public domain; you may do as you wish with it. */
body {
background: black;
color: white;
margin: 0px;
}
#playerheader {
position: absolute;
left: 0px;
right: 0px;
top: 0px;
height: 24px;
padding: 0px 4px;
text-align: right;
font-size: 16px;
}
#playerheader a {
color: white;
text-decoration: none;
}
span.settings div {
background: black;
z-index: 1;
padding-right: 4px;
}
#playercontent {
position: absolute;
left: 0px;
right: 0px;
top: 24px;
bottom: 0px;
}
video {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
max-height: 100%;
}