Snippets Collections
window.onscroll = function() {
2
    var header = document.getElementById('header-1');
3
    if (window.pageYOffset > 100) {
4
        header.style.backgroundColor = '#015478';
5
    } else {
6
        header.style.backgroundColor = 'transparent';
7
    }
8
}
9
star

Sun Feb 11 2024 21:33:31 GMT+0000 (Coordinated Universal Time)

#change-background #scrolling #header

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension