forked from prolific-idea/Code-Off-Tweet-Visualiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.25 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/flipclock.css">
<link rel="stylesheet" href="css/styles.css">
<script src="js/TwitterPostFetcher.js"></script>
<script src="js/jquery-3.0.0.min.js"></script>
<script src="js/flipclock.min.js"></script>
<title>Statistic Tweet Visualiser</title>
</head>
<body>
<div id="logo-area">
</div>
<div class="myClockStyle" style="float: right">
Next tweet retrieval in:
<div class="clock" style="margin:2em;"></div>
Retrieval count:
<strong><div id="count" style="float: right">1</div></strong>
</div>
<div class="myClockStyle" style="float: right">
Uptime:
<div class="upClock" style="margin:2em;"></div>
</div>
<div class="container">
<div class="myImage1" style="float: top left;margin: 0 0 10px 10px;">
<img width="100px" height="60px" src="img/logo2.png" ></img>
</div>
<div class="myImage2" style="float: right;margin: 20px 20px 20px 20px;">
<img width="100px" height="100" src="img/entelect.png"></img>
</div>
<div class="myImage3" style="float:right;margin: 20px 20px 20px 20px;">
<img width="100px" height="100" src="img/pi.png"></img>
</div>
<div class="myImage2" style="float:right;margin: 10px 10px 10px 10px;">
<strong>Sponsored by:</strong>
</div>
<img id="twitterImg" src="img/Twitter_logo_blue.png" width="100px" height="100" class="twitterLogoClass"/>
<a id="jasonMayes" href="http://codepen.io/jasonmayes/pen/Ioype" style="font-size: 10px">
Thanks to <strong>Jason Mayes</strong> for his <strong>AWESOME</strong> twitter scraping library
</a>
<div class="mine" style="margin: 30px 30px 30px 30px;">
<div id="jsinsa_profile"></div>
<div id="jsinsa_posts"></div>
</div>
</div>
<script src="js/anime.min.js"></script>
<script src="js/tweets.js"></script>
<script src="js/imgRandom.js"></script>
<script src="js/twitterLogo.js"></script>
<script src="js/clock.js"></script>
</body>
</html>