This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// First round of slideshow function/plugin | |
$(function(){ | |
var rotator = { | |
init: function() { | |
this.buildRotator(); | |
}, | |
slideConfig: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
var s; | |
var theSequence = { | |
settings: { | |
/* "Cached" variables/information, | |
frequently/widely used information for sub-functions */ | |
logoButton: $('#logo'), | |
header: $('header'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
var waterJugs = { | |
// initialize water jugs | |
init: function() { | |
this.wjBuild(); | |
}, | |
// configuration variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background: url("http://assets.codepen.io/images/classy_fabric.png"); | |
} | |
#sweet { | |
position: fixed; | |
margin: 0 45%; | |
top: 10em; | |
} |