Created
April 20, 2016 11:28
-
-
Save ScorpiusZ/982e96678f5f435c026d47fdc6f1148a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<meta http-equiv=Content-Type content="text/html;charset=utf-8"> | |
<head> | |
<title>test</title> | |
</head> | |
<body> | |
<pre id="lines" data-lining> | |
print("Hello, WWDC!") | |
Hello love at first swipe. | |
Hello other side of the road. | |
Hello yogi on my wrist. | |
Hello driver, fast as you can. | |
Hello workout in my living room. | |
Hello every pitch, every highlight. | |
Hello self-combusting selfies. | |
Hello double tap heart. | |
Hello rain in five minutes. | |
Hello 6 seconds of fame. | |
Hello big idea. | |
</pre> | |
<script> | |
var colors = ['#00AbA4', '#8884C5', '#CD8B5c', '#DC3B3B', '#B33896']; | |
var randomColor = () => colors[Math.floor(Math.random()*colors.length)]; | |
window.onload = () => { | |
var lines = document.querySelectorAll('#lines .line'); | |
[].forEach.call(lines, x => x.style.color = randomColor()); | |
}; | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment