style & animation

master
Tancre 4 years ago
parent 2a23901365
commit 86de1d272d

Binary file not shown.

@ -5,6 +5,11 @@ body {
color: white;
}
@font-face {
font-family: 'Phili'; /*a name to be used later*/
src: url('./PhiliItaRus.woff'); /*URL to font*/
}
#content {
position: absolute;
left: 0; right: 0; top: 0; bottom: 0;
@ -46,9 +51,15 @@ video {
}
#blabla {
font-family: 'Phili';
/*width: 480px;*/
flex: 1 1 auto;
min-height: auto;
padding: 0px 50px;
}
#changeText{
font-size: 20px;
}
#pad {

@ -29,7 +29,8 @@
</div>
</div>
<div id="blabla">
<p>/ko 'lek tiv yon ning/ The gathering of collective memory. A pre-literate notion of memory, in a communal way, something commemorative rather than putting a memory in a container. What we thought it was going to be changed completely. We are in that way changing our memory of what it was supposed to be. What are you able to collect? Memories? Objects? People? A collection of texts and people, collecting and composing each other? Somehow it's not even important that we have all the knowledge, what's important is the living, generative sense of the collection.
<p id="changeText">/ko 'lek tiv yon ning/</p>
<p>The gathering of collective memory. A pre-literate notion of memory, in a communal way, something commemorative rather than putting a memory in a container. What we thought it was going to be changed completely. We are in that way changing our memory of what it was supposed to be. What are you able to collect? Memories? Objects? People? A collection of texts and people, collecting and composing each other? Somehow it's not even important that we have all the knowledge, what's important is the living, generative sense of the collection.
</p>
<p>Follow the live chat, <a href="https://kiwiirc.com/client/irc.kiwiirc.com/?nick=anonymous|?&theme=cli#xpub" target="_blank">#xpub @ irc.kiwiirc.com</a>.</p>
</div>
@ -49,6 +50,20 @@ player.autoplay(true);
// var ret = player.isFullscreen();
// console.log("isFullscreen", ret);
//})
var text = ["/ko 'lek tiv yon ning/", "/col ec 'tivio ning/", "/co-lec-tí-bio-ning/","/colleectiiiviòooniiing/","/cool-ectiveioning/","/ke lec ti vi on ne ing/","/collec-tí-ví-uuuuniiiing/"];
var counter = 0;
var elem = document.getElementById("changeText");
var inst = setInterval(change, 1000);
function change() {
elem.innerHTML = text[counter];
counter++;
if (counter >= text.length-1) {
counter = 0;
// clearInterval(inst); // uncomment this if you want to stop refreshing after one cycle
}
}
</script>
</body>
</html>
Loading…
Cancel
Save