Created
August 1, 2014 03:31
-
-
Save soncco/1cf0a18e0e92e9205f90 to your computer and use it in GitHub Desktop.
Simple bootstrap menu animation
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
$(window).scroll(function() { | |
if ($(".conciencia").offset().top>50) | |
$(".conciencia").addClass("complete"); | |
else | |
$(".conciencia").removeClass("complete"); | |
}); |
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
-webkit-transition: .3s ease; | |
-moz-transition: .3s ease; | |
-ms-transition: .3s ease; | |
-o-transition: .3s ease; | |
transition: .3s ease; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment