-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (82 loc) · 4.89 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
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bullpitch!</title>
<meta description="a game for founders full of shit!">
<!-- DISABLE LANDSCAPE MODE (didnt work) -->
<!-- <meta http-equiv="ScreenOrientation" content="autoRotate:disabled"> -->
<!-- <meta name="viewport" content="initial-scale=1.0, width=device-width" /> -->
<!-- DONTAWESOME -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- FAVICON LINK -->
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
<!-- PWA Feature: STANDALONE LAUNCH IN SAFARI (no navbars) -->
<!-- see here: https://medium.com/appscope/designing-native-like-progressive-web-apps-for-ios-1b3cdda1d0e8 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- ICON DISPLAYED WHEN ADDED TO HOMESCREEN -->
<!-- see here: https://webdesign.tutsplus.com/articles/quick-tip-give-your-website-an-ios-home-screen-icon--webdesign-10067 -->
<link rel="apple-touch-icon" sizes="57x57" href="images/favicon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/favicon.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/favicon.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/favicon.png">
<!-- CUSTOM SPASH SCREENS -->
<!-- made with https://appsco.pe/developer/splash-screens -->
<link href="images/splashscreens/iphone5_splash.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/iphone6_splash.png" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/iphoneplus_splash.png" media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/iphonex_splash.png" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/iphonexr_splash.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/iphonexsmax_splash.png" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/ipad_splash.png" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/ipadpro1_splash.png" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/ipadpro3_splash.png" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="images/splashscreens/ipadpro2_splash.png" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<!-- LINK CSS STYLESHEET -->
<link rel="stylesheet" href="css/style.css">
<!-- GOOGLE ANALYTICS -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X4J6GDFNZE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-X4J6GDFNZE');
</script>
</head>
<body>
<div class="main-container">
<div class="header">
<a href="https://bullpitch.com"><img id="logo-img" src="images/bullpitch-text.svg"></a>
</div>
<div class="bull-bar-container">
<a id="bull-bar">
<p>- - - - -</p>
</a>
</div>
<div class="spinner">
<img id="spinner-img" src="images/spinner.png">
<h1 id="btn-spinner">
Spin
</h1>
<svg class="svg-white">
<circle id="svg-circle-white" r="76" cx="80" cy="80"></circle>
</svg>
<svg class="svg-red">
<circle id="svg-circle-red" r="76" cx="80" cy="80"></circle>
</svg>
</div>
<div class="donate">
<a class="buy-beer" href="https://www.paypal.me/heyholmes">buy us a beer <i class="fa fa-beer"></i></a>
</div>
</div>
<!-- SPIN SCRIPT -->
<script src="js/track.js"></script>
<script src="js/asciArt.js"></script>
<script src="js/countdownTimer.js"></script>
<script src="js/bullName.js"></script>
<script src="js/spin.js"></script>
</body>
</html>