Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Last active March 27, 2019 22:31
Show Gist options
  • Save ilearnjavascript/8d1e97f48a8751975fe2b6973d5889cd to your computer and use it in GitHub Desktop.
Save ilearnjavascript/8d1e97f48a8751975fe2b6973d5889cd to your computer and use it in GitHub Desktop.
fadein - 1.js
const fadeIn = (el, smooth = true, displayStyle = 'block') => {
el.style.opacity = 0;
el.style.display = displayStyle;
if (smooth) {
let opacity = 0;
let request;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment