-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteresa-map.html
More file actions
113 lines (80 loc) · 3.76 KB
/
Copy pathteresa-map.html
File metadata and controls
113 lines (80 loc) · 3.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<!-- Teresa Light Lab Template -->
<html lang="en-US" class="no-js">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Teresa Light | CreateJS Click Map</title>
<meta name="viewport" content="width=device-width">
<link rel="apple-touch-icon-precomposed"
href="/teresa/images/iphone-icon.jpg">
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="/teresa/images/ipad-retina-icon.jpg">
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="/teresa/images/iphone-retina-icon.jpg">
<link rel='stylesheet' id='app-css' type='text/css' media='all'
href='teresa/css/app.css?ver=3.6.1' />
<link rel='stylesheet' id='print-css' type='text/css' media='print'
href='teresa/css/print.css?ver=3.6.1'/>
<link rel='stylesheet' id='custom-teresa-css' href='teresa/css/custom-teresa.css' type='text/css' media='all' />
<script type='text/javascript' src='js/jquery-2.1.0.min.js'></script>
<script type='text/javascript' src='js/createjs-2013.12.12.min.js'></script><!-- All CreateJS Libraries -->
<script type="text/javascript" src='js/jcon.presentation.clickmap.js'></script>
</head>
<body>
<div class="wrapper header">
<div class="row">
<div class="columns small-12 large-3">
<a href="http://teresalight.com/" class="logo">
<img src="teresa/images/logo.png" alt="logo" /></a>
</div>
<div class="columns small-12 large-9">
<nav class="primary-nav show-for-medium-up">
<ul id="menu-main-menu" class="menu">
<li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14"><a href="http://teresalight.com/">Home</a></li>
<li id="menu-item-18" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-18"><a href="http://teresalight.com/labs">Labs</a></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="wrapper content">
<div class="row">
<section class="main-content columns small-12">
<header>
<h1 class="page-title">CreateJS Example</h1>
</header>
<!--Start of Main-Content. For unique css, put in the css folder of this lab and link to it above. Same with scripts that are just for this lab. -->
<div class="lab-content"
<!-- put any description in here with p tags on -->
<canvas id="shapeMap" width="960" height="540">
</canvas>
<ul class="button-group">
<!-- <li><a href="#" class="button medium">Reset</a></li>
-->
</ul>
</div>
</section><!--/main-content-->
</div><!--/row-->
</div>
<div class="wrapper footer">
<footer>
<div class="row">
<div class="columns small-12 large-9">
</div>
<div class="columns small-12 large-3">
<ul class="social-links">
<li><a href="https://www.facebook.com/teresa.light.12" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/Teresa_Light" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://plus.google.com/116383503688372290540" target="_blank"><i class="icon-google-plus"></i></a></li>
<li><a href="http://www.youtube.com/user/tmlight" target="_blank"><i class="icon-youtube"></i></a></li>
<li><a href="https://www.linkedin.com/pub/teresa-light/1/645/83a/" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="http://teresalight.com/feed/" target="_blank"><i class="icon-feed"></i></a></li>
</ul>
<p class="copyright"> Copyright © Teresa Light - 2013 </p>
</div>
</div>
</footer>
</div>
</body>
</html>