You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
522 B
21 lines
522 B
3 years ago
|
<head>
|
||
|
<link rel="stylesheet" href="examples.css">
|
||
|
</head>
|
||
|
<div id="output">
|
||
|
<p class="slideInText" id="slideInText">
|
||
|
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.innerText="Test Message "+(msgnumb++)
|
||
|
l.className="slideInText"
|
||
|
box.appendChild(l)
|
||
|
}
|
||
|
},2000)
|
||
|
</script>
|