forked from mraza007/chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
56 lines (46 loc) · 1.7 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// This is Garbage code
// var iterator = 0;
// var color_array = [
// "#f44336",
// "#e91e63",
// "#9c27b0",
// "#673ab7",
// "#3f51b5"
// ]
// var background = document.getElementById("bg");
// var changeBg = function() {
// iterator += 1;
// if (iterator > color_array.length - 1) {
// iterator = 0;
// }
// background.style.backgroundColor = color_array[iterator];
// }
// setInterval(changeBg, 1500);
// A Simple word Generator
// var iterator = 0;
// var color_array = [
// "Hello",
// "How",
// "Are",
// "You",
// ]
var iterator = 0;
color_array = [
"“The way get started is to quit talking and begin doing.” – Walt Disney",
"“The pessimist sees difficulty in every opportunity. The optimist sees opportunity in every difficulty.” – Winston Churchill",
"“Don’t let yesterday take up too much of today.” – Will Rogers",
"“You learn more from failure than from success. Don’t let it stop you. Failure builds character.” – Unknown",
"“It’s not whether you get knocked down, it’s whether you get up.” – Vince Lombardi",
"“If you are working on something that you really care about, you don’t have 'to be pushed. The vision pulls you.” – Steve Jobs",
"“Entrepreneurs are great at dealing with uncertainty and also very good at minimizing risk. That’s the classic entrepreneur.” – Mohnish Pabrai",
"“Knowing is not enough; we must apply. Wishing is not enough; we must do.” – Johann Wolfgang Von Goethe",
]
var background = document.getElementById("h");
var changeBg = function() {
iterator += 1;
if (iterator > color_array.length - 1) {
iterator = 0;
}
background.innerHTML = color_array[iterator];
}
setInterval(changeBg, 2000);