Header changes as you scroll down (jQuery)

后端 未结 7 1472
滥情空心
滥情空心 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");
        }
    });
    
    0 讨论(0)
提交回复
热议问题