Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
Initial revision. 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mauimauer committed Jun 19, 2014
1 parent f9e8911 commit 90630a1
Show file tree
Hide file tree
Showing 44 changed files with 16,426 additions and 0 deletions.
29 changes: 29 additions & 0 deletions application.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html ng-app="gdgVizApp" ng-csp>
<head>
<meta charset='utf-8'>
<title>GDG @ I/O 2014 - Viz</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/application.css">
</head>

<body>
<div ng-view></div>
<script src="js/vendor/google-analytics-bundle.js"></script>
<script src="js/vendor/socket.io.js"></script>
<script src="js/vendor/underscore.js"></script>
<script src="js/vendor/angular.min.js"></script>
<script src="js/vendor/angular-cookies.min.js"></script>
<script src="js/vendor/angular-resource.min.js"></script>
<script src="js/vendor/angular-sanitize.min.js"></script>
<script src="js/vendor/angular-route.min.js"></script>
<script src="js/vendor/angular.audio.js"></script>
<script src="js/vendor/chrome-nfc.js"></script>
<script src="js/application.js"></script>
<script src="js/controllers/startup.js"></script>
<script src="js/controllers/stage.js"></script>
<script src="js/controllers/photobooth.js"></script>
</body>
</html>
Binary file added audio/beep.wav
Binary file not shown.
Binary file added audio/longbeep.wav
Binary file not shown.
Binary file added audio/nfc.wav
Binary file not shown.
Binary file added audio/shutter.wav
Binary file not shown.
10 changes: 10 additions & 0 deletions blank.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html ng-app="gdgVizApp" ng-csp>
<head>
<meta charset='utf-8'>
<title>GDG @ I/O 2014 - Viz</title>
</head>

<body style="background: #000000;">
</body>
</html>
172 changes: 172 additions & 0 deletions css/application.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
webview {
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 10;
}

canvas {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
}

#send {
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
z-index: 20;
height: 100px;
padding: 10px;
text-align: center;
width: 100%;
color: #FFFFFF;
background: rgba(0,0,0,.25);
font-size: 32pt;
}

#info {
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
z-index: 11;
height: 100px;
padding: 10px;
text-align: center;
width: 100%;
color: #FFFFFF;
background: rgba(0,0,0,.25);
font-size: 32pt;
}

.btn-extra {
height: 65px;
font-size: 24pt;
}

#flash {
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
display: none;
opacity: 0;
background: rgba(255,255,255,1);
z-index: 15;
}

.visible {
display: block !important;
opacity: 1 !important;
}

#preview {
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
background: rgba(0,0,0,1);
display: none;
opacity: 0;
z-index: 17;
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
}

#load {
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
text-align: center;
padding-top: 20%;
display: none;
opacity: 0;
z-index: 21;
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
}

#countdown {
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 16;
padding-top: 15%;
text-align: center;
color: #FFFFFF;
text-shadow: 0px 5px 11px rgba(150, 150, 150, 0.7);
font-family: 'Roboto', sans-serif;
font-weight: 900;
font-size: 142pt;
display: none;
opacity: 0;
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
}

video {
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
background: rgba(0,0,0,1);
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
}

#blackout {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
background: #000000;
z-index: 15;
opacity: 1;
transition: opacity 1.25s ease-in-out;
-moz-transition: opacity 1.25s ease-in-out;
-webkit-transition: opacity 1.25s ease-in-out;
}

.off {
opacity: 0 !important;
}

#stage {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
}
Loading

0 comments on commit 90630a1

Please sign in to comment.