-hacker
5 comments
BLOBBY[OP]
12.04.2021 16:50
Linkthis is actually not a hacker this is the real blobby... i just felt like saying it
how bout this?<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<link rel="stylesheet" type="text/css" href="spaced.css">
<link rel="shortcut icon" type="image/png" href="http://test.noa16.png"/>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300' rel='stylesheet' type='text/css'>
</head>
<body>
<p class="text" data-text="test text 010101101010101 lolol whatever"</p>
<script>
var printText = $('.text').data('text');
var contentArray = printText.split('/n');
$.each(contentArray, function(index, newLine) {
$('.text').append('<span style="display:block;" id="'+index+'"></span>');
var lineID = index;
var self = $(this);
setTimeout(function () {
$.each(self, function(index, chunk){
setTimeout(function () {
$('#'+lineID).append("<span>"+chunk+"</span>");
$('body, html').scrollTop($(document).height());
}, index*5);
});
}, index*100);
});
</script>
</body>
</html>