Header changes as you scroll down (jQuery)

后端 未结 7 1507
滥情空心
滥情空心 2020-12-01 01:22

TechCrunch recently redesigned their site and they have a sweet header that minifies into a thinner version of their branding as you scroll down.

You can see what I

7条回答
  •  温柔的废话
    2020-12-01 02:21

    $(window).on("scroll", function () {
        if ($(this).scrollTop() > 100) {
            $("#header").addClass("not-transparent");
        }
        else {
            $("#header").removeClass("not-transparent");
        }
    });
    

提交回复
热议问题