Skip to content

Instantly share code, notes, and snippets.

@prbaron
prbaron / slideDown.js
Last active August 29, 2015 14:27 — forked from ludder/slideDown.js
Vanilla JavaScript slideUp and slideDown functions
/*
Element to slide gets the following CSS:
max-height: 0;
opacity: 0;
overflow: hidden;
transition: max-height 0.4s ease 0s;
*/
/**
* Like jQuery's slideDown function - uses CSS3 transitions