-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.81 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>rotateQuotes Plugin Demo</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="js/jquery.rotatequotes.js"></script>
<script>
$(document).ready(function() {
$('.rotate-quote').rotateQuotes({speed: 300, delay: 1000, hoverpause: true, random: true});
});
</script>
<style>
.hide {
display: none;
}
</style>
</head>
<body>
<div id="quotes">
<div class="rotate-quote hide">
"A day without sunshine is like, you know, night." -Steve Martin
</div>
<div class="rotate-quote hide">
"Any sufficiently advanced technology is indistinguishable from magic." - Arthur C. Clarke
</div>
<div class="rotate-quote hide">
"Technological progress has merely provided us with more efficient means for going backwards." - Aldous Huxley
</div>
<div class="rotate-quote hide">
"Humanity is acquiring all the right technology for all the wrong reasons." - R. Buckminster Fuller
</div>
<div class="rotate-quote hide">
"I just invent, then wait until man comes around to needing what I've invented." - R. Buckminster Fuller
</div>
<div class="rotate-quote hide">
"If we continue to develop our technology without wisdom or prudence, our servant may prove to be our executioner" - Omar N. Bradley
</div>
<div class="rotate-quote hide">
"Our technological powers increase, but the side effects and potential hazards also escalate." - Alvin Toffler
</div>
<div class="rotate-quote hide">
"Defect-free software does not exist." - Wietse Venema
</div>
</div>
</body>
</html>