-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (86 loc) · 3.85 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
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
<!--
You are free to copy and use this sample in accordance with the terms of the
Apache license (http://www.apache.org/licenses/LICENSE-2.0.html)
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Cloud עין</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="http://www.google.com/jsapi?key=AIzaSyBIG5DZTcsPHnhf6MKAfjrLZnIonU8uax0" type="text/javascript"></script>
<script type="text/javascript" src="javascript/jquery.js"></script>
<script type="text/javascript" src="javascript/ge.js"></script>
<script type="text/javascript" src="javascript/extends.js"></script>
<script type="text/javascript" src="javascript/highcharts.js"></script>
<script type="text/javascript" src="javascript/exporting.js"></script>
<script type="text/javascript" src="javascript/chart_users.js"></script>
<script type="text/javascript" src="javascript/browsers.js"></script>
<script type="text/javascript" src="javascript/users_countries.js"></script>
<script type="text/javascript" src="javascript/loading_time.js"></script>
<script type="text/javascript" src="javascript/gritter.js"></script>
<script type="text/javascript" src="javascript/dom.js"></script>
<script type="text/javascript">
$.extend($.gritter.options, {
class_name: 'gritter-light', // for light notifications (can be added directly to $.gritter.add too)
position: 'bottom-right', // possibilities: bottom-left, bottom-right, top-left, top-right
fade_in_speed: 100, // how fast notifications fade in (string or int)
fade_out_speed: 100, // how fast the notices fade out
time: 3000 // hang on the screen for...
});
google.load("earth", "1");
google.load("maps", "2");
google.setOnLoadCallback(init);
</script>
</head>
<body>
<div id="wrapper">
<div id="map3d"></div>
<div id="bottom"><span id="time"></span>
<div id="container" style="min-width: 400px; height: 100%; margin: 0 auto"></div>
</div>
<div id="right">
<span id="site-title">Cloud <span id="hebrew"> עין</span></span>
<div id="buttons"></div>
<ul>
<li>
<div class="widget">
<div class="data users">
<span class="title">Visitors in TOP 10 Countries</span>
<span class="count">N/A</span>
</div>
<div class="mask" id="user-countries">
<h2>Your Ad Could Be Here!</h2>
<p>And Now We Can Tell You Who'll See It</p>
</div>
</div>
</li>
<li>
<div class="widget">
<div class="data time" id="loading_time">
<span class="title">Average Loading Time (ms)</span>
<span class="count">N/A</span>
</div>
<div class="mask" id="total">
<h2>Your Ad Could Be Here!</h2>
<p>And Now We Can Tell You Who'll See It</p>
</div>
</div>
</li>
<li>
<div class="widget">
<div class="data" id="loading-dom"></div>
<div class="mask">
<h2>Your Ad Could Be Here!</h2>
<p>And Now We Can Tell You Who'll See It</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<div id="band-aid"></div>
<div id="cover"></div>
</body>
</html>