Created
January 24, 2015 02:50
-
-
Save tagr/db727a79627a6258cf9f to your computer and use it in GitHub Desktop.
emWxeV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input(type=text) | |
button validate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('button').on('mousedown touch', function() { | |
$('input').addClass('fail'); | |
}); | |
$('input').on('focus', function(){ | |
$('input').removeClass('fail'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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