Private
Public Access
1
0

alternating background images

This commit is contained in:
Sander Roosendaal
2017-04-11 19:18:31 +02:00
parent 153e2b3d25
commit f6ceb46f6a
4 changed files with 46 additions and 2 deletions

8
static/js/background.js Normal file
View File

@@ -0,0 +1,8 @@
var num = (Math.floor(Math.random()*4));
var array = ['one', 'two', 'three', 'four'];
var elem = document.getElementById('main');
elem.classList.add(array[num]);