mirror of
https://github.com/tjsga/towardstj.git
synced 2025-04-18 10:40:17 -04:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
$(function () {
|
|
$(document).scroll(function () {
|
|
var $nav = $("nav");
|
|
var $hero = $(".hero");
|
|
$nav.toggleClass("scrolled", $(this).scrollTop() > $hero.height());
|
|
});
|
|
});
|