menu background change color on scroll

后端 未结 3 1558
北荒
北荒 2021-01-13 04:04

What I am trying to do is fade the background of my menu from transparent to light grey when the user reaches the next section of the site. I\'ve searched high and low for a

3条回答
  •  心在旅途
    2021-01-13 04:46

    Binding the scroll to the window is a bad idea.

    If you want to trigger a change on each section of the website have a look at jquery waypoints

    http://imakewebthings.com/jquery-waypoints/

        $('.section').waypoint({handler: function() {
                $('.menu').css('background', '#ff3366');
            },
            offset: '50%'
        });
    

    Hope this helps.

提交回复
热议问题