-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
278 lines (245 loc) · 11.1 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>IML 400 Current</title>
<script>
var step = true;
function animate(whatever) {
if ( step ){
whatever.style.color="crimson";
}
else{
whatever.style.color="gold";
}
step = !step;
setTimeout(function () {
animate(whatever);
}, 4000);
}
window.onload = function () {
var mydiv = document.getElementById("hello");
animate(mydiv);
}
</script>
<style>
body{
margin:0;
color: #eee;
background: #222;
/*min-width:1220px;*/
}
}
a{
font-weight:bold;
text-decoration:none;
color:crimson;
}
a:link, a:visited, a:active{
font-weight:bold;
text-decoration:none;
color:crimson;
}
a:hover{
color:gold;
}
.hi{
text-align:center;
margin:40px;
}
#hello{
font-weight: bold;
font-size: 5em;
color: crimson;
-webkit-transition: color 4s; /* For Safari 3.1 to 6.0 */
transition: color 4s;
}
#header{
background:black;
margin:0;
padding:10px 40px;
}
#header h3{
margin:0;
padding:0px;
}
#wrapper{
max-width: 990px;
/*max-width: 720px;*/
margin:0px auto;
overflow:auto;
padding:10px;
margin-bottom:200px;
}
#footer{
margin:0;
position:fixed;
bottom:0;
padding:0px 40px;
}
#student-websites, #assignments, #links, #links-2{
width:328px;
float:left;
}
#student-websites h3, #assignments h3, #links h3, #links-2 h3{
margin-bottom:5px;
/*color:gold;*/
}
ol{
padding: 0 10px 0 20px;
margin: auto;
}
ol li{
padding:3px 0 0 0;
}
</style>
</head>
<body>
<div id="header">
<h3>Time Machine: <a href="https://github.com/blackaller/IML-400">GitHub</a> - <a href="fall-2012/">Fall 2012</a> - <a href="spring-2013/">Spring 2013</a> - <a href="spring-2014/">Spring 2014</a></h3>
</div>
<div id="wrapper">
<div class="hi" id="hello">
Hello World
</div>
<h3>Welcome to IML 400 Spring 2015 [ <a href="syllabus-spring-2015.html" onclick="//alert('this is a work in progress')">Syllabus</a> ]</h3>
<h3>Lecturer <a href="http://blacklog.mitplw.com/">Luis Blackaller</a><br />
Teacher Assistant <a href="http://rosemarycomella.com/">Rosemary Comella</a></h3>
<div id="student-websites">
<h3>Students</h3>
<ol>
<li><a href="http://storm.usc.edu/~asrillee/IML-400/">Charmaine Regina Asril Lee</a></li>
<li><a href="http://storm.usc.edu/~austinyc/IML-400/">Austin Yujun Chee</a></li>
<li><a href="http://storm.usc.edu/~hguigui/IML-400/">Harry Thomas Guigui</a></li>
<li><a href="http://storm.usc.edu/~kanellos/IML-400/">Gabrielle Marie Kanellos</a></li>
<li><a href="http://storm.usc.edu/~skraemer/IML-400/">Shannon Loyola Kraemer</a></li>
<li><a href="http://storm.usc.edu/~ericyl/IML-400/">Eric Young Liu</a></li>
<li><a href="http://storm.usc.edu/~kmmcgowa/IML-400/">Kevin Matthew McGowan</a></li>
<li><a href="http://storm.usc.edu/~michelkm/IML-400/">Michelle Korst Meyer</a></li>
<li><a href="http://storm.usc.edu/~jpisani/IML-400/">Juliette Marie Pisani</a></li>
<li><a href="http://storm.usc.edu/~abschwar/IML-400/">Anna Beth Schwartz</a></li>
<li><a href="http://storm.usc.edu/~cbthomas/IML-400/">Christopher Brady Thomas</a></li>
<li><a href="http://storm.usc.edu/~tsukii/IML-400/">Kevin Hikaru Tsukii</a></li>
</ol>
<h3>Assignments</h3>
<ol>
<li><a href="assignment-1.html">HTML & CSS Review</a></li>
<li><a href="assignment-2.html">Development Practices</a></li>
<li><a href="assignment-3.html">UI/UX Fundamentals</a></li>
<li><a href="assignment-4.html">Dive into Javascript</a></li>
<li><a href="assignment-5.html">Advanced Javascript with REST and AJAX</a></li>
<li><a href="assignment-6.html">Alternative web content with WebGL, <canvas> and SVG</a></li>
<li><a href="assignment-7.html">Welcome to the Metaverse</a></li>
<li><a href="assignment-8.html">Net Art: Case studies</a></li>
<li><a href="assignment-9.html">Putting It All Together: Making & Breaking the Web</a></li>
<li><a href="assignment-10.html">Final Project Pre-Production Draft</a></li>
<li><a href="assignment-11.html">Final project Landing Page First Pass</a></li>
<li><a href="assignment-12.html">Final project Build Candidate</a></li>
</ol>
</div>
<div id="links">
<h3>Resources</h3>
<ol>
<li><a href="examples.html">Code examples</a> [Important]</li>
<li>[Very] <a href="links.html">Useful Links</a></li>
</ol>
<h3>Tutorials</h3>
<ol>
<li><a href="storm-setup.html">Setting up Storm</a></li>
</ol>
<h3>Text Editor</h3>
<ol>
<li><a href="http://www.sublimetext.com">Sublime Text Editor</a></li>
</ol>
<h3>Books</h3>
<ol>
<li><a href="http://eloquentjavascript.net">Eloquent Javascript</a></li>
<li><a href="http://diveintohtml5.info/">Dive into HTML5</a></li>
<li><a href="http://www.goodreads.com/review/list/2790197-black?shelf=iml-400">More Recommended Books</a></li>
</ol>
<h3>Developer Tools</h3>
<ol>
<li><a href="https://github.com/">GitHub</a></li>
<li><a href="http://developers.google.com/chrome-developer-tools/">Chrome Developer Tools</a></li>
<li><a href="http://jsfiddle.net/">JSFiddle</a></li>
<li><a href="http://codepen.io/">CodePen</a></li>
</ol>
<h3>Front-end Frameworks</h3>
<ol>
<li><a href="http://html5boilerplate.com/">HTML5 Boilerplate</a></li>
<li><a href="https://necolas.github.io/normalize.css/">Normalize.css</a></li>
<li><a href="http://twitter.github.com/bootstrap/">Bootstrap</a> and <a href="http://getbootstrap.com/">Get Bootstrap</a></li>
</ol>
<h3>Javascript Libraries</h3>
<ol>
<li><a href="http://modernizr.com/">Modernizr</a></li>
<li><a href="http://jquery.com/">JQuery</a></li>
<li><a href="http://jqueryui.com/">JQuery UI</a></li>
<li><a href="http://youmightnotneedjquery.com">You might not need JQuery</a></li>
<li><a href="http://prototypejs.org/">Prototype</a></li>
</ol>
<h3>Animation and effects</h3>
<ol>
<li><a href="http://script.aculo.us/">Scriptaculous</a></li>
<li><a href="http://stolksdorf.github.com/Parallaxjs/">ParallaxJS</a></li>
<li><a href="http://www.createjs.com/#!/TweenJS">TweenJS</a></li>
</ol>
<h3>Back-end Frameworks</h3>
<ol>
<li><a href="http://nodejs.org">Node JS</a></li>
</ol>
<h3>MVC Frameworks</h3>
<ol>
<li><a href="http://angularjs.org/">AngularJS</a></li>
<li><a href="http://backbonejs.org/">BackboneJS</a></li>
</ol>
</div>
<div id="links-2">
<h3>APIs</h3>
<ol>
<li><a href="https://github.com/SciDevs/delicious-api">Delicious API</a></li>
<li><a href="https://dev.twitter.com/">Twitter APIs</a></li>
<li><a href="https://developers.google.com/maps/web/">Google Maps Web API</a></li>
<li><a href="https://developers.google.com/youtube/">YouTube API</a></li>
</ol>
<h3>SVG, Canvas and 2D graphics</h3>
<ol>
<li><a href="http://paperjs.org/">PaperJS</a></li>
<li><a href="https://jonobr1.github.io/two.js/">TwoJS</a></li>
<li><a href="http://d3js.org/">D3</a></li>
<li><a href="http://raphaeljs.com/">Raphael</a></li>
<li><a href="http://www.createjs.com/#!/EaselJS">EaselJS</a></li>
<li><a href="http://p5js.org">p5JS</a></li>
</ol>
<h3>WebGL and 3D graphics</h3>
<ol>
<li><a href="http://threejs.org/">ThreeJS</a></li>
<li><a href="http://tparisi.github.io/glam/">GLAM</a></li>
<li><a href="http://pixelshaders.com/">Pixel Shaders, An Interactive Introduction to Graphics Programming</a></li>
<li><a href="https://playcanvas.com/">PlayCanvas WebGL Game Engine</a></li>
<li><a href="http://voxeljs.com">VoxelJS</a></li>
</ol>
<h3>Virtual Reality WebVR (Might require a headset)</h3>
<ol>
<li><a href="http://mozvr.com">MozVR</a></li>
<li><a href="https://vr.chromeexperiments.com">Chrome Experiments for Virtual Reality</a></li>
<li><a href="http://elevr.com">eleVR web based virtual reality video</a></li>
</ol>
<h3>Web Audio API</h3>
<ol>
<li><a href="http://webaudioapi.com/">Web Audio API</a> book, tutorials and examples</li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API">Mozilla Web Audio API docs</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Using_Web_Audio_API">Mozilla using the Web Audio API</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Visualizations_with_Web_Audio_API">Mozilla Visualizations with Web Audio API</a></li>
<li><a href="http://webaudiodemos.appspot.com/">Web Audio Demos</a></li>
</ol>
<h3>Automation</h3>
<ol>
<li><a href="http://sass-lang.com">SASS CSS Preprocessor</a></li>
<li><a href="http://gruntjs.com">Grunt JS Task Runner</a></li>
<li><a href="http://emmet.io">Emmet Toolkit Plugin for Sublime</a> and <a href="http://docs.emmet.io/abbreviations/syntax/">Emmet Abbreviations Syntax explained</a></li>
</ol>
</div>
</div>
</body>
</html>