Skip to content

Instantly share code, notes, and snippets.

@PunGy
Created May 4, 2018 12:29
Show Gist options
  • Save PunGy/792efc94500bd40917d2aea801887d3a to your computer and use it in GitHub Desktop.
Save PunGy/792efc94500bd40917d2aea801887d3a to your computer and use it in GitHub Desktop.
a blurring appearance
function toBlur(target){
target.style.display = 'none';
setTimeout(function(){
target.style.opacity = 0;
}, 200);
}
function unBlur(target){
target.style.display = 'block';
setTimeout(function(){
target.style.opacity = 1;
}, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment