|
|
@ -67,7 +67,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="table_content_05">
|
|
|
|
<div id="table_content_05">
|
|
|
|
<ul>
|
|
|
|
<ul>
|
|
|
|
<li id="track_5_1"><span class="numbers_table_content_05">1</span> ...</li>
|
|
|
|
<li id="track_5_1"><span class="numbers_table_content_05">1</span> Do.as, Mika, 5'17''</li>
|
|
|
|
<li id="track_5_2"><span class="numbers_table_content_05">2</span> ...</li>
|
|
|
|
<li id="track_5_2"><span class="numbers_table_content_05">2</span> ...</li>
|
|
|
|
<li id="track_5_3"><span class="numbers_table_content_05">3</span> ...</li>
|
|
|
|
<li id="track_5_3"><span class="numbers_table_content_05">3</span> ...</li>
|
|
|
|
<li id="track_5_4"><span class="numbers_table_content_05">4</span> ...</li>
|
|
|
|
<li id="track_5_4"><span class="numbers_table_content_05">4</span> ...</li>
|
|
|
@ -265,7 +265,7 @@
|
|
|
|
</div><!-- <div class="contributors"> -->
|
|
|
|
</div><!-- <div class="contributors"> -->
|
|
|
|
<script src="player2.js"></script>
|
|
|
|
<script src="player2.js"></script>
|
|
|
|
<script src="liveplayer.js"></script>
|
|
|
|
<script src="liveplayer.js"></script>
|
|
|
|
<script src="dragable.js"></script>
|
|
|
|
<!--script src="dragable.js"></script-->
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
|
|
player(document.querySelector("#week_04"), document.querySelector("#iframe_04"));
|
|
|
|
player(document.querySelector("#week_04"), document.querySelector("#iframe_04"));
|
|
|
@ -301,6 +301,81 @@
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var dragItem = document.querySelector("#shell_03");
|
|
|
|
|
|
|
|
var container = document.querySelector("#implicancies_05");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var active = false;
|
|
|
|
|
|
|
|
var currentX;
|
|
|
|
|
|
|
|
var currentY;
|
|
|
|
|
|
|
|
var initialX;
|
|
|
|
|
|
|
|
var initialY;
|
|
|
|
|
|
|
|
var xOffset = 0;
|
|
|
|
|
|
|
|
var yOffset = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
container.addEventListener("touchstart", dragStart, false);
|
|
|
|
|
|
|
|
container.addEventListener("touchend", dragEnd, false);
|
|
|
|
|
|
|
|
container.addEventListener("touchmove", drag, false);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
container.addEventListener("mousedown", dragStart, false);
|
|
|
|
|
|
|
|
container.addEventListener("mouseup", dragEnd, false);
|
|
|
|
|
|
|
|
container.addEventListener("mousemove", drag, false);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function dragStart(e) {
|
|
|
|
|
|
|
|
if (e.type === "touchstart") {
|
|
|
|
|
|
|
|
initialX = e.touches[0].clientX - xOffset;
|
|
|
|
|
|
|
|
initialY = e.touches[0].clientY - yOffset;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
initialX = e.clientX - xOffset;
|
|
|
|
|
|
|
|
initialY = e.clientY - yOffset;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (e.target === dragItem) {
|
|
|
|
|
|
|
|
active = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function dragEnd(e) {
|
|
|
|
|
|
|
|
initialX = currentX;
|
|
|
|
|
|
|
|
initialY = currentY;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
active = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function drag(e) {
|
|
|
|
|
|
|
|
if (active) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (e.type === "touchmove") {
|
|
|
|
|
|
|
|
currentX = e.touches[0].clientX - initialX;
|
|
|
|
|
|
|
|
currentY = e.touches[0].clientY - initialY;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
currentX = e.clientX - initialX;
|
|
|
|
|
|
|
|
currentY = e.clientY - initialY;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xOffset = currentX;
|
|
|
|
|
|
|
|
yOffset = currentY;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setTranslate(currentX, currentY, dragItem);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setTranslate(xPos, yPos, el) {
|
|
|
|
|
|
|
|
el.style.transform = "translate3d(" + xPos + "px, " + yPos + "px, 0)";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|