-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom-quote-machine.html
111 lines (89 loc) · 2.71 KB
/
random-quote-machine.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<html>
<head>
<title>Random Quote Machine</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://use.fontawesome.com/84ab6100da.js"></script>
<style>
@import url('https://fonts.googleapis.com/css?family=Cedarville+Cursive|Raleway');
body {
background-color: #F1E2CB;
}
.container {
background-color: #B7A591;
margin: 10px auto;
padding: 20px;
width: 70%;
min-height: 200px;
text-align: center;
}
.quote {
font: 30px 'Cedarville Cursive', cursive;
color: #423C62;
}
.footer {
text-align: center;
padding-left: 100px;
font: 20px 'Raleway', sans-serif;
color: #281D1B;
}
.left {
float: left;
width: 350px;
text-align: right;
padding: 0 10px 0 0;
margin: 20px 0 0 0;
}
.right {
float: right;
width: 350px;
text-align: left;
padding: 0 0 0 10px;
margin: 20px 0 0 0;
}
.clear {
clear: left;
}
button {
margin: 0;
padding: 10px;
background-color: #423C62;
border: 0;
font: 16px 'Raleway', sans-serif;
color: #F1E2CB;
}
.fa {
color: #423C62;
font-size: 40px;
}
</style>
</head>
<body>
<div class="container">
<div id="randomQuotes">
<!--quotes here-->
</div>
<p><button onclick="newQuote()">New Quote</button></p>
<p><button id="tweet"><i class="fa fa-twitter-square" aria-hidden="true"></i></button></p>
<script>
window.onload = newQuote;
var quotes = [
["I love you the more in that I believe you had liked me for my own sake and for nothing else.", "John Keats"],
["But man is not made for defeat. A man can be destroyed but not defeated.", "Ernest Hemingway"],
["When you reach the end of your rope, tie a knot in it and hang on", "Franklin D. Roosevelt"],
["There is nothing permanent except change.", "Heraclitus"],
["The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart.", "Helen Keller"],
["Keep love in your heart. A life without it is like a sunless garden when the flowers are dead.", "Oscar Wilde"],
["It is during our darkest moments that we must focus to see the light.", "Aristotle"],
["Try to be a rainbow in someone's cloud", "Maya Angelou"]
]
function newQuote() {
var randNum = Math.floor(Math.random() * (quotes.length));
document.getElementById("randomQuotes").innerHTML = "<div class=\"quote\">\"" + quotes[randNum][0] + "\"</div><div class=\"footer\"> - " + quotes[randNum][1] + "</div>";
}
$("#tweet").click(function() {
var x = $("#randomQuotes").text();
window.open("https://twitter.com/intent/tweet?text=" + x);
});
</script>
</body>
</html>