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
//SORTS ITEMS USING ANIMATION LIBRARY | |
$(window).load(function() { | |
var box = $('.box'), | |
boxContainer = $('.boxes'), | |
section = $('.sort-section'), | |
containerHeight = $('.adjustable-height'), | |
boxClassFilter, | |
showThese; | |
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
// expressions-----------------------> | |
var mathResult = 1*10 + (200 / 3); | |
// an expression uses operators to give you a return value | |
//statement | |
if(false === true){ | |
console.log('WTF'); | |
} | |
else{ |
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
/** | |
* Base styles to get us started... | |
*/ | |
.container { | |
background-color: black; | |
box-sizing: border-box; | |
text-align: center; | |
} | |
.item { |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder