-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (66 loc) · 3.08 KB
/
index.html
File metadata and controls
75 lines (66 loc) · 3.08 KB
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
<!DOCTYPE html>
<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">
<meta name="description" content="Create a live streaming radio station with friends.">
<meta property="og:title" content="Pinwheel">
<meta property="og:type" content="website">
<meta property="og:image" content="./images/pinwheel.png">
<meta property="og:url" content="https://brunchmade.github.io/pinwheel.pw/">
<meta property="og:description" content="Create a live streaming radio station with friends.">
<title>Create a live streaming radio station with friends · Pinwheel</title>
<link href="https://d2v52k3cl9vedd.cloudfront.net/basscss/6.1.4/basscss.min.css" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
<link rel="icon" href="./images/pinwheel.png">
<link rel="apple-touch-icon-precomposed" href="./images/pinwheel.png">
</head>
<body class="flex flex-column center fadeIn">
<header class="flex-none">
<div class="h2 m2 left align">
<img src="images/pinwheel.png" class="splashLogo mr1"> Pinwheel
</div>
</header>
<main class="flex-auto flex-center demoWrapper">
<div class="demoContainer">
<div class="demoScreenshot mx-auto"></div>
<!-- <iframe class="demo" src="https://app.pinwheel.pw"></iframe> -->
<div class="stoplights" title="don't click me :("></div>
</div>
<div class="fail"></div>
<div class="reboot">
<audio class="audio" preload="auto"><source src="./Mac_OldStartup.mp3" type="audio/mpeg"></audio>
<div class="reboot-1">
<div class="reboot-2"></div>
<div class="reboot-3">Welcome to Pinwheel.</div>
</div>
</div>
<div class="mx-auto" style="width:100vw;">
<h1>Create a live streaming radio station with friends.</h1>
<p>Add tracks and playlists from SoundCloud. YouTube and Spotify coming soon.</p>
<a href="http://cl.ly/p9RT/download/Pinwheel.app.zip" class="button button-big mb1 js-download">🐞 Download Beta for OS X 🐞</a>
</div>
</main>
<footer class="flex-none">
<p class="h6 mt4 mb1">Created by <a href="https://twitter.com/wr" target="_blank">Wells Riley</a>, <a href="https://twitter.com/alexbaldwin" target="_blank">Alex Baldwin</a>, and <a href="https://twitter.com/ianhirschfeld" target="_blank">Ian Hirschfeld</a></p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
var html = $('.demoContainer').html();
$('.demoWrapper').delegate('.stoplights', 'click', function() {
$('.demoContainer').hide().html('');
$('.fail').show();
});
$('.demoWrapper').delegate('.fail', 'click', function() {
$('.fail').hide();
$('.reboot').show();
$('.audio').trigger('play');
setTimeout(function() {
$('.reboot').hide();
$('.demoContainer').html(html).show();
}, 14000);
});
</script>
</body>
</html>