Code
Mount Airy Animal Hospital
PHP and MySQL based website for Mount Airy Animal Hospital. Log in using Username: Guest and Password: Guest to check out the features of the site. Dynamicaly generated pages, special alerts able to be activated at any time, special kitten adoption section with uploading features.
Presentation Demo
Looking for a non-Power Point Solution, I found Eric Meyer's S5 presentation. However, it didn't operate quite the way I wanted so I spent some time on my own solution. Rather than one contiguous file which stores each slide, this one has each slide as a seperate page. The sequence is loaded through XML (though I may change that to jSON since there are a lot of compatibility issues with XML cross-browser) and loads the slide information via AJAX.
I didn't spend any time on the design of this - so it is pretty darn basic.
jQuery
I'm getting to really like jQuery. The Coda Slider plug in is awesome, but it didn't do some things i wanted. So I made it do them.
jQuery - CTS Footer
This is another jQuery/JavaScript project I worked on. CTS for EPA wanted a universal footer that could appear on sites. By inserting the small code snippet below, a list could be turned into a dynamic page footer. The code can also be adapted for use with a JSON file.
<<script type="text/javascript" src="js/jquery.ctsfooter.min.js"></script>
<script type="text/javascript">
$(function() {
$("ul#footerbar").ctsfooter();
});
</script>
<link rel="stylesheet" type="text/css"
href="styles/cts1-styles.css" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css"
href="styles/cts1-ie-styles.css" />
<style type="text/css">
#ctsFooter img { behavior: url(iepngfix.htc) }
</style>
<![endif]-->