1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/test/ecmascript/scroll3.html

18 lines
476 B
HTML
Raw Normal View History

2021-06-14 19:29:22 +00:00
<head>
<script>
var tekst = ' ELinks';
2021-06-14 19:29:22 +00:00
function scrollText() {
var znak = tekst.charAt(0);
tekst = tekst.substring(1, tekst.length) + znak;
return '<pre>' + tekst.substring(0, 80) + '</pre>';
2021-06-14 19:29:22 +00:00
}
function scroll() {
document.getElementById('s').innerHTML = scrollText();
2021-11-12 20:53:31 +00:00
window.setTimeout(scroll, 100);
2021-06-14 19:29:22 +00:00
}
</script>
</head>
<body onload="scroll()">
<div id="s"></div>
</body>