21 lines
580 B
HTML
21 lines
580 B
HTML
<head>
|
|
<link rel="stylesheet" href="template.css">
|
|
</head>
|
|
<div id="output">
|
|
<p class="slideInText" id="slideInText">
|
|
<img src="broadcaster.png"/>Test 1<br>
|
|
</p>
|
|
</div>
|
|
<script type="text/javascript">
|
|
const box = document.getElementById("output")
|
|
var msgnumb=2;
|
|
setInterval(()=>{
|
|
if (Math.random()<=0.5) {
|
|
const l = document.createElement("p");
|
|
l.innerHTML="<img src=\"broadcaster.png\"/>Test Message "+(msgnumb++)
|
|
l.className="slideInText"
|
|
box.appendChild(l)
|
|
}
|
|
},2000)
|
|
</script>
|