Created
November 22, 2016 10:21
-
-
Save mihailsitnic/4b7955bb4974d746871f49d1be354436 to your computer and use it in GitHub Desktop.
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
Для лого задать класс .logo | |
<img src="img/logo.svg" alt="" width="188" height="188" class="logo"> | |
В файл main.js добавить | |
$(window).on('scroll', function() { | |
$('.logo').toggleClass('active', $(document).scrollTop() >= 100); | |
}); | |
в файл style.css добавить | |
.active { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment