Continua a non apparire niente
codice:
function Inizializza() {
if (document.all) {
larghezza = TextScroll.offsetWidth;
altezza = TextScroll.offsetHeight;
setInterval("TextScroll_IE()", 1);
TextScroll.style.visibility = "visible";
}
else if (document.layers) {
larghezza = document.TextScroll.document.width;
altezza = document.TextScroll.document.height;
setInterval("TextScroll_NN()", 1);
document.TextScroll.visibility = "show";
}
else if(document.getElementById) {
larghezza = document.getElementById('TextScroll').style.width;
altezza = document.getElementById('TextScroll').style.height;
setInterval("ttsW3()", 1);
document.getElementById('TextScroll').style.visibility = "visible";
}
}
function TextScroll_IE() {
TextScroll.style.pixelLeft = document.body.scrollLeft + document.body.clientWidth - larghezza - 10;
TextScroll.style.pixelTop = document.body.scrollTop + document.body.clientHeight - altezza - 10;
}
function TextScroll_NN() {
document.TextScroll.left = pageXOffset + window.innerWidth - larghezza - 10;
document.TextScroll.top = pageYOffset + window.innerHeight - altezza - 10;
}
function ttsW3() {
document.getElementById('TextScroll').style.left = pageXOffset + window.innerWidth - larghezza - 10;
document.getElementById('TextScroll').style.top = pageYOffset + window.innerHeight - altezza - 10;
}