-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebdev.html
More file actions
executable file
·403 lines (311 loc) · 18.3 KB
/
webdev.html
File metadata and controls
executable file
·403 lines (311 loc) · 18.3 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
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<!DOCTYPE html>
<html>
<head>
<title>Brian E. Davis ٩͡[๏̯͡๏]</title>
<meta charset="utf-8" />
<meta name="description" content="Portfolio and professional pages of Brian E. Davis, a Web developer, visual materials archivist, and a digitization sepecialist." />
<meta name="keywords" content="web, graphic, designer, html, xhtml, css" />
<meta name="robots" content="all, index, follow" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/style.css" media="all" />
<link rel="stylesheet" href="css/print.css" media="print" />
<link rel="stylesheet" href="nav/css/nav.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="../nav/css/ie.css">
<link rel="stylesheet" href="../nav/css/ie7.css">
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script>
!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');
</script>
<script type="text/javascript" src="fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
$(".video").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : true,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 250,
'height' : 436,
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf',
'swf' : {
'wmode' : 'transparent',
'allowfullscreen' : 'true'
}
});
return false;
});
});
</script>
<script type="text/javascript">
jQuery(document).ready(function() {
$(".video2").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : true,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 640,
'height' : 420,
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf',
'swf' : {
'wmode' : 'transparent',
'allowfullscreen' : 'true'
}
});
return false;
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$("a#example1").fancybox();
$("a#example2").fancybox({
'overlayShow' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
$("a[rel=group1]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=group2]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=group3]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=group4]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=group5]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=group6]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=group7]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=group8]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
});
</script>
<style type="text/css">
<!--
.style8 {font-weight: bold; font-size: 9pt;}
body {
background-color: #999999;
}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head>
<body>
<div id="page">
<header>
<div id="logo"></div>
<script>
var el = document.getElementsByTagName("body")[0];
el.className = "";
</script>
<noscript>
<!--[if IE]>
<link rel="stylesheet" href="nav/css/ie.css">
<![endif]-->
</noscript>
<nav id="topNav">
<ul>
<li><a href="video.html" title="Video Production">Video</a></li>
<li><a href="webdev.html" title="Web / iOS Development">Web / iOS</a></li>
<li><a href="design.html" title="Design">Design</a></li>
</ul>
</nav>
<script src="nav/js/modernizr.js"></script>
</header>
<section id="main2">
<!-- row 1 -->
<section id="ADS1" class="portfolio-project">
<h3>Archival Digital Services: Digital Collections</h3>
<img src="images/webdev/wd8.jpg" width="420" height="280" alt="tvc15Media Promotional Video" />
<ul>
<p>After being heavily involved with digital collections projects at a number of large institutions, I've developed an interest in technologies that smaller institutions can employ to broaden access to their archival collections. Omeka uses L.A.M.P. server technology combined with the unqualified Dublin Core metadata standard.The linked custom implementation of Omeka is installed on my home server. I also built an iOS app as a suppliment to the repository system.<br>
<br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group7" href="images/webdev/7/1.jpg" title="Admin Item Edit Page"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group7" href="images/webdev/7/2.jpg" title="File Citation & Social Sharing"><span class="style8">Image 2</span></a> <a class="grouped_elements" rel="group7" href="images/webdev/7/3.jpg" title="Embedded Video Page"></a></p>
<p>Technologies: Linux (Debian), Apache Web Server, MySQL, & PHP</p>
</ul>
<p class="note">tvc15Media | Archival Digital Services (2010)</p>
<p><a class="button" href="http://youtu.be/2qswh6QhX_Y" target="_blank">View Screen Capture</a></p>
</section>
<section id="HPUL2" class="portfolio-project">
<h3>High Point University Libraries: Website</h3>
<img src="images/webdev/wd1.jpg" width="420" height="280" alt="HPU Libraries Website" />
<ul>
<p>Part of my duties at HPU Libraries is to redesign the library's aging website and to integrate the new design into the library's existing framework (server config, cataloging system, etc.). This is the 3rd redevelopment of the site. New technologies being used on the site include: AJAX, jQuery Javascript library, Moo Tools, & custom RSS calendars.<br>
<br>
<br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group2" href="images/webdev/2/1.jpg" title="Flash-based Rotating Slides"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group2" href="images/webdev/2/2.jpg" title="Custom RSS Calendar"><span class="style8">Image 2</span></a> <a class="grouped_elements" rel="group2" href="images/webdev/2/3.jpg" title="jQuery Tabbed Search Box"><span class="style8">Image 3</span></a></p>
<p>Software: Dreamweaver, Illustrator, Flash, Photoshop, & Motion<br>
</p>
</ul>
<p class="note">High Point University Libraries (2010)</p>
<p><a class="button" href="http://library.highpoint.edu/tutorials.html" target="_blank">View Website</a><br>
</p>
</section>
<!-- row 2 -->
<section id="relation_browser" class="portfolio-project">
<h3>Duke University Libraries: Interactive Chart</h3>
<img src="images/webdev/wd4.jpg" width="420" height="280" alt="Arrival Video" />
<ul>
<p>This interactive organizational chart was something that I did to graphically show the relationship and inner workings of the Digital Collections Program at Duke University Libraries. It was built using Moritz Stefaner's fabulous relation browser framework. The chart works through Flash animation, Action Scripting, Java, and XML.<br>
<br><br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group3" href="images/webdev/3/1.jpg" title="Individual Relation Screen"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group3" href="images/webdev/3/2.jpg" title="Group Relation"><span class="style8">Image 2</span></a> <a class="grouped_elements" rel="group3" href="images/webdev/3/3.jpg" title="XML Linking Nodes"><span class="style8">Image 3</span></a></p>
<p>Software: Dreamweaver, Illustrator, Flash, & Photoshop</p>
</ul>
<p class="note">Duke University Libraries (2008)</p>
<p><a class="button" href="http://people.oregonstate.edu/~davibria/duke/staff/RelationBrowser_content.html" target="_blank">View Website</a><br>
</p>
</section>
<section id="ASU1" class="portfolio-project">
<h3>Arizona State University Libraries: Tutorial</h3>
<img src="images/webdev/wd3.jpg" width="420" height="280" alt="Duke Digital Collections Intro" />
<ul>
<p>This tutorial is a few years old (and is entirely in Flash), but shows what I think is a very good way to have a multi-sectioned local network tutorial. This one combines audio tracks, textual elements, as well as videos and screen captures. You can jump ahead by tutorial section or by the individual screens. One thing that I would do differently is the background music, but since this was built as an internal departmential tutorial it's not as ill-suited as it would have been otherwise.<br>
<br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group4" href="images/webdev/4/1.jpg" title="Start Page"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group4" href="images/webdev/4/2.jpg" title="On-Click Audio Layer"><span class="style8">Image 2</span></a> <a class="grouped_elements" rel="group4" href="images/webdev/4/3.jpg" title="Flash Menu (Scenes)"><span class="style8">Image 3</span></a></p>
<p>Software: Dreamweaver, Illustrator, Flash, Photoshop, & Final Cut Pro</p>
</ul>
<p class="note">Arizona State University Libraries (2006)</p>
<p><a class="button" href="https://dl.dropboxusercontent.com/u/2070498/tvc15Media_2006/scanning.html" target="_blank">View Website</a><br>
</p>
</section>
<!-- row 3 -->
<section id="UNC-CH1" class="portfolio-project">
<h3>UNC-CH Ackland Art Museum: iTunes U</h3>
<img src="images/webdev/wd2.jpg" width="420" height="280" alt="Chroma Key Demo" />
<ul>
<p>In 2009, I was asked to put together an iTunes U section of the University of North Carolina Chapel Hill's account for the Ackland Art Museum. After getting admininstrative privileges, I gathered content from a variety of sources including archival videotape footage, audio from gallery tours, interview footage, and public lecture footage. Much of this had to be converted into formats that work with iTunes: H.264 for the videos and AAC for the audio.<br>
<br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group5" href="images/webdev/5/1.jpg" title="Audio Tour Files"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group5" href="images/webdev/5/2.jpg" title="Editing Audio in Soundbooth"><span class="style8">Image 2</span></a></p>
<p>Software: Audacity,Soundbooth, Final Cut Pro, & Photoshop</p>
</ul>
<p class="note">University of North Carolina (2009)</p>
<p><a class="button" href="http://deimos3.apple.com/WebObjects/Core.woa/Browse/unc-public.1924656858" target="_blank">View in iTunes</a></p>
</section>
<section id="PellMellPress1" class="portfolio-project">
<h3>Digital Pamphlet Series: Flash Animation</h3>
<img src="images/webdev/wd9.jpg" width="420" height="280" alt="Library Tutorial" />
<ul>
<p>This Flash-based series of digital pamplets represents a 2005 collaboration between me and book-artist/printmaker Ashlee Weitlauf. While Ashlee's work is meant to be experienced in person, that's not always possible, so she asked me to create a book experience for her website. This animation was also converted into a free-standing Flash-based application used in an exhibition kiosk in 2007.<br>
<br>
<br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group6" href="images/webdev/6/1.jpg" title="Interface of Exhibition Kiosk"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group6" href="images/webdev/6/2.jpg" title="Detail of The Water is Rising"><span class="style8">Image 2</span></a></p>
<p>Software: Dreamweaver, Illustrator, Flash, & Photoshop</p>
</ul>
<p class="note">tvc15Media (2005)</p>
<p><a class="button" href="http://people.oregonstate.edu/~davibria/pellmellpress/digital_books.html" target="_blank">View Website</a></p>
</section>
<!-- row 4 -->
<section id="HPUL1" class="portfolio-project">
<h3>High Point University Libraries: iOS</h3>
<img src="images/webdev/wd6.jpg" width="420" height="280" alt="High Point University Libraries: iOS App" />
<ul>
<p>As a result of an increasing number of visits from iOS devices, I designed a mobile version of the library's website that includes basic catalog searching, contact information, and a chat app. I also reworked the mobile site into an iOS app using the UIWebView class in Xcode. The app has since been folded into the larger HPU Mobile iOS app.<br>
<br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group1" href="images/webdev/1/1.jpg" title="Mobile Interface"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group1" href="images/webdev/1/2.jpg" title="UIWebView Class"><span class="style8">Image 2</span></a> <a class="video" href="http://www.youtube.com/watch?v=vDpD85R2R9w;autoplay=1" ><span class="style8">Video 1</span></a></p>
<p>Software: Xcode, Dashcode, Interface Builder, Illustrator, &Photoshop</p>
</ul>
<p class="note">High Point University Libraries (2010)</p>
<p><a class="button" href="http://www.youtube.com/watch?v=vDpD85R2R9w&feature=share&list=UU5IvQ1PMi4DvtABfLN55zdA" target="_blank">View Video Demo</a><br>
</p>
</section>
<section id="tvc15Media1" class="portfolio-project">
<h3>Pixels Per Inch: iTunes Channel</h3>
<img src="images/webdev/wd7.jpg" width="420" height="280" alt="Tired and Naked Video" />
<ul>
<p>This iTunes channel represents another avenue that can be taken if iTunes U isn't an option. I originally put this channel together in 2006 via XML feeds that are connected to video files on my webserver. Changing what's on your channel is as easy as updating the XML and moving audio & video files.<br>
<br>
<span class="style8">Spotlight Gallery:</span>
<a class="grouped_elements" rel="group8" href="images/webdev/8/1.jpg" title="Video Preview"><span class="style8">Image 1</span></a> <a class="grouped_elements" rel="group8" href="images/webdev/8/2.jpg" title="iTunes Item Tag"><span class="style8">Image 2</span></a></p>
<p>Software: Audacity, Soundbooth, Final Cut Pro, & Photoshop</p>
</ul>
<p class="note">tvc15Media (2005)</p>
<p><a class="button" href="http://itunes.apple.com/us/podcast/tvc15media-brian-e.-davis/id544480477" target="_blank">View iTunes Preview</a></p>
</section>
</section>
<div class="clear"></div>
</div>
<footer>
<div class="c1"><small id="copyright"><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" /></a><br /></small></div><br><br>
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5986504-7']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>