Skip to content

Instantly share code, notes, and snippets.

View sAVItar02's full-sized avatar
☢️

Aviral Singh Chauhan sAVItar02

☢️
  • Bangalore, India
View GitHub Profile
@sAVItar02
sAVItar02 / navColorChange.js
Created July 14, 2021 21:34
Change background color of the navbar on scroll
// JQuery
$(function (){
$(document).scroll(function(){
var $nav = $(".nav");
$nav.toggleClass("scrolled", $(this).scrollTop() > $nav.height()); // in the class "scrolled" set a different background color
});
});
// Vanilla
window.onscroll = function() {