Teleprompter

by Ben Clayton

HTML

<body>

But in the villages outside Jerusalem crowds were gathering ready to make the final push up into the city. Of course there was excitement – there always is in a crowd.  But imagine how this was increased as Jesus sent for, and sat, on the colt, accompanied by its mother.  For there was another collective memory which had been passed down the last few generations – the account of Judas Maccabeus who had ridden into Jerusalem to clear out the pagan sacrifices left by Antiochus Epiphanes. The temple had been rededicated in 164BC and the crowds on that occasion had waved palm branches and shouted ‘Hosanna!’, ‘the Lord saves!’


</body>

CSS

body {
			font-size:60px;
			transform: rotate3d(0, 1, 0, 180deg);
			font-family: arial;
			color:white;
			background-color:black;
			margin-left:15%;
			margin-right:15%;
			padding-top:50vh;
			padding-bottom:100vh;
		}

JavaScript

var t=0;
function doit() {
	alert(window.innerHeight);
  window.scroll({
    top: t++,
    left: 0,
    behavior: 'smooth'
  });
  if (t > window.innerHeight + 200) t = 0;
}


$(document).ready(function(){
	t = 0;
	//setInterval(doit, 30);
});