Last active
December 11, 2015 22:58
-
-
Save xirukitepe/4672970 to your computer and use it in GitHub Desktop.
FadeOut Div with specific setTimeOut function
This file contains hidden or 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
# Flashing Message | |
# Fade flash message | |
$(document).ready -> | |
$(".alert").fadeOut 4000 | |
$(".alert").mouseenter -> | |
$(".alert").stop() | |
$(".alert").mouseleave -> | |
$(".alert").fadeOut 4000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment