ANIMATION
transition: <property> <duration> <timing-function> <delay>;
Property: Defaults to all
Timing-function: Defaults to ease
Delay: Defaults to 0
VENDOR PREFIXES
-webkit-transition: /*SAFARI CHROME*/
-moz-transition: /*MOZILLA */
-ms-transition: /*IE */
-o-transition: /* OPERA */
transition:
CHECKING: [Link]
Absolute means position me relative to my nearest positioned parent or document
Sub & Content
Opacity: 0; - Hides element element still takes up the same width/height
Visibility: hidden; - makes the element transparent to click events
Display: none; -removes element from DOM does not transition /* DONT USE WHEN
TRANSITIONING */
DOM is ready
jQuery(document).ready(function(){
});