OPPERA TEORETTIKKA INTERNETTIKKA l i b r e t t o 1999 Igor Stromajer Intima Virtual Base www.intima.org +38641703291 3@intima.org - created and performed by Igor Stromajer - intima.org (SeaFair, Museum for Contemporary Artsi, Skopje, Macedonia, 1998; Transmediale, Cultural Center Podewill, Berlin, Germany, 1999; Opera SNG Ljubljana, Slovenia, 1999) - recorded live on Thursday, March 18th, 1999 in Opera and Ballet of the Slovene national theatre in Ljubljana by Borut Savski [ministry:of:x-periment and Radio Student] - produced by Anatom - coproduced by Intima Virtual Base and Kapelica Gallery - supported by City of Ljubljana - photo by Igor Delorenzo Omahen - thanks to Bojana Kunst, Natasa Kos, Jurij Krpan, dr. Borut Smrekar - libretto starts here -
Your browser doesn´t support 'Frames' !!!
Click
function makearray(n) {
this.length = n;
for(var i = 1; i <= n; i++)
this[i] = 0;
return this;
}
hexa = new makearray(16);
for(var i = 0; i < 10; i++)
hexa[i] = i;
hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
hexa[13]="d"; hexa[14]="e"; hexa[15]="f";
function hex(i) {
if (i < 0)
return "00";
else if (i > 255)
return "ff";
else
return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setbgColor(r, g, b) {
var hr = hex(r); var hg = hex(g); var hb = hex(b);
document.bgColor = "#"+hr+hg+hb;
}
function fade(sr, sg, sb, er, eg, eb, step) {
for(var i = 0; i <= step; i++) {
setbgColor(
Math.floor(sr * ((step-i)/step) + er * (i/step)),
Math.floor(sg * ((step-i)/step) + eg * (i/step)),
Math.floor(sb * ((step-i)/step) + eb * (i/step)));
}
}
function fadein() {
fade(255,255,255, 0,99,165, 64);
}
function fadeout() {
/*fade(255,255,255, 0,0,0, 64); */
}
/* do fadein */
fadein();
/***** end fade script *****/