Guten Tag Baukasten-Community
,
habe folgenden Script gefunden aber würde gerne die Texte, die dann einblenden zentiert haben wollen, wie kann man das hier einfügen:
<SCRIPT type="text/javascript">
var quotations = new Array()
quotations[0]= "Text 1<br/><b>Autor 1</b>"
quotations[1]= "Text 2.<br/><b>Autor 2</b>"
quotations[2]= "Text 3<br/><b>Autor 3</b>"
quotations[3]= "Text 4<br/><b>Autor 4</b>"
quotations[4]= "Text 5</br><b>Autor 5</b>"
quotations[5]= "Text 6<br/><b>Autor 6</b>"
quotations[6]= "Text 7<br/><b>Autor 7</b>"
function display()
{a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",7000)}
</SCRIPT>
<div id="quotation">
<SCRIPT type="text/javascript">display()</SCRIPT>
</div>
Danke schon mal für die Hilfe