Skip to content

Instantly share code, notes, and snippets.

@tagr
Created January 24, 2015 02:50
Show Gist options
  • Save tagr/db727a79627a6258cf9f to your computer and use it in GitHub Desktop.
Save tagr/db727a79627a6258cf9f to your computer and use it in GitHub Desktop.
emWxeV
input(type=text)
button validate
$('button').on('mousedown touch', function() {
$('input').addClass('fail');
});
$('input').on('focus', function(){
$('input').removeClass('fail');
});
input {
transition: background-color 0.6s;
}
.fail {
background-color: hsl(360,100%,80%);
color: hsl(0,100%,100%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment