* Click here for the Live Performance Video Documentation *





//metronome: sound on

//on the web console write the choreo_graphic_code:

var xMax, yMax, xNeg=1, yNeg=1;

function pageMove() {
window.scrollBy(10 * xNeg, 10 * yNeg);
if(xMax == window.scrollX)xNeg = xNeg * -1;
if(yMax == window.scrollY)yNeg = xNeg * -1;
scrolldelay = setTimeout(pageMove,100);
console.log(window.scrollY);
xMax = window.scrollX;
yMax = window.scrollY;
}

...

document.querySelector("#videoElement").style.width="900px"
document.querySelector("#videoElement").style.filter="opacity(60%)"
// repeat
document.querySelector("#videoElement").style.width="120px"
document.querySelector("#videoElement").style.transform="rotate(90deg)"
// repeat
document.querySelector("#videoElement").style.transform="rotate(360deg)"
// pause
document.querySelector("#container").style.margin="0px"
document.querySelector("img").style.width="20%"


...