This repository has been archived by the owner on Nov 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
koda_2.html
60 lines (49 loc) · 2.09 KB
/
koda_2.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
<!DOCTYPE html>
<html xmlns:ng="http://angularjs.org/" >
<head>
<link rel="stylesheet" href="./css/koda.css"/>
</head>
<body>
<div id="stage" ng-app="kodaline" ng-controller="TimelineController" >
<!-- Tile Grid View -->
<div id="status" class="status"></div>
<div id="header"></div>
<div class="tile1" ng-click="showDetails(0)" ></div>
<div class="tile2" ng-click="showDetails(1)" ></div>
<div class="tile3" ng-click="showDetails(2)" ></div>
<div class="tile4" ng-click="showDetails(3)" ></div>
<div id="other"></div>
<div id="footer"></div>
<!-- Tile Grid Mask -->
<div id="mask" class="hidden"></div>
<!-- Tile Details View -->
<div id="green_status" class="hidden"></div>
<div id="details" class="hidden">
<img src="" class="scaled">
<div id="title" >
<div class="content"></div>
</div>
<div id="info" >
<div class="content"></div>
</div>
<div id="pause">
<img src="http://solutionoptimist-bucket.s3.amazonaws.com/kodaline/pause.png" class="pause">
</div>
</div>
<div id="timeline-slider" class="timeline-slider-container hidden" ng-controller="TimelineSliderController">
<input type="range"
ng-model="slider.position"
ng-mousedown="isDragging(true)"
ng-mouseup="isDragging(false)"
step="{{slider.step}}"
min="0" max="{{slider.totalDuration}}"
class="repeat-slider">
</div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/q.js/1.1.2/q.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/gsap/1.14.2/TweenMax.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.js"></script>
<script type="text/javascript" src="./js/koda_2.js"></script>
</body>
</html>