-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (62 loc) · 2.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://bumptop.github.io/mobile.html" >
<title>BumpTop - Open Source 3D Physics Desktop</title>
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<meta charset='utf-8'>
<link href='res/style.css' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Cousine:400,700' rel='stylesheet' type='text/css'>
<link href="res/video-js.css" rel="stylesheet" type="text/css">
<script src="res/video.js"></script>
<!-- Unless using the CDN hosted version, update the URL to the Flash SWF -->
<script>
videojs.options.flash.swf = "res/video-js.swf";
</script>
</head>
<body>
<div id="wrapper">
<header>
<div id="text" class="row">
<div class="col-xs-12 col-sm-6">
<h1>bumptop</h1>
<h4 class="subtitle">A 3D Physics Desktop Experience</h4>
<iframe class="like" scrolling="no" frameborder="0" style="margin: 2px 16px; border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ffacebook.com%2Fbumptop&width&layout=button_count&action=like&show_faces=false&share=false&height=21&appId=129296783837307"></iframe>
</div>
<div class="col-xs-12 col-sm-6">
<ul id="menu">
<li><a class="download" href="https://github.com/bumptop/BumpTop/wiki">About</a></li>
<li><a class="download" href="https://github.com/bumptop/BumpTop">Source Code</a></li>
<script>
var dlLink="https://github.com/bumptop/BumpTop/releases/tag/2.5";
if( ! /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) )
{
if (navigator.appVersion.indexOf("Win")!=-1)
dlLink="https://github.com/bumptop/BumpTop/releases/download/2.5/BumpTopWindows-v2.5.exe";
else if (navigator.appVersion.indexOf("Mac")!=-1)
dlLink="https://github.com/bumptop/BumpTop/releases/download/2.5/BumpTopMac-1.05.2.dmg";
// else document.write('Other OS');
}
// else document.write('Other OS');
document.write('<li><a class="download" href="' + dlLink + '">Download</a></li>');
</script>
</ul>
</div>
</div>
</header>
<!-- <video autoplay muted loop class="hero" src="res/bump_anthem_hd.m4v"></video> -->
<video autoplay muted loop id="bump" class="hero video-js vjs-default-skin" preload="metadata"
data-setup="{}">
<source src="res/bump_anthem_hd.mp4" type='video/mp4' />
</video>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-100621-5', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>