Animated scroll-dependant menu using scrollMonitor

Developer
Size
2,748 Kb
Views
14,168

How do I make an animated scroll-dependant menu using scrollmonitor?

In this example I use scrollMonitor to fix a menu to the top of the page once it normally would leave the viewport. As an extra I also use CSS3 transition to animate the menu into a new appearance.. What is a animated scroll-dependant menu using scrollmonitor? How do you make a animated scroll-dependant menu using scrollmonitor? This script and codes were developed by Maheshc on 28 November 2022, Monday.

Animated scroll-dependant menu using scrollMonitor Previews

Animated scroll-dependant menu using scrollMonitor - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Animated scroll-dependant menu using scrollMonitor</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <h1>Scroll down</h1>
<h2>And watch the menu bar</h2>
<nav id="menu"> <h1 id="sitename">MySite</h1> <ul> <li class="active"><a href="#">Home</a></li> <li><a href="#">Blog</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul>
</nav>
<div style="height:500px;"></div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://rawgithub.com/sakabako/scrollMonitor/master/scrollMonitor.js'></script> <script src="js/index.js"></script>
</body>
</html>

Animated scroll-dependant menu using scrollMonitor - Script Codes CSS Codes

@import url(https://fonts.googleapis.com/css?family=Roboto);
body { height: 2000px; font-family: Roboto, sans-serif; -webkit-font-smoothing: antialiased;
}
h1, h2 { text-align: center;
}
h1 { color: #222;
}
h2 { color: #555;
}
nav#menu { margin-top: 50px; background: #3498db; text-align: center; height: 50px; width: 100%;
}
nav#menu ul { padding: 0; background: white; margin: 0 auto; display: inline-block; height: 50px;
}
nav#menu ul li { float: left; padding: 0 20px; background: #3498db; list-style: none; margin-right: 5px; line-height: 50px; height: 50px; /* * This element will get an alternative style * once we apply the "scrolled" class. * We also want a nice animation so we can * simply set CSS3 transitions for this. */ transition: margin 0.1s ease-in-out;
}
nav#menu ul li:nth-child(1) { margin-left: 5px;
}
nav#menu ul li.active { background: #2980b9;
}
nav#menu ul li a { color: white; text-decoration: none; font-size: 1.3em;
}
nav#menu h1#sitename { font-size: 1.2em; line-height: 50px; margin: 0; position: absolute; left: 0.5em; color: white; opacity: 0; /* * Same thing here as with the menu items. * This element will be animated into its * alt. state with the transition property */ transition: opacity 0.1s ease-in-out;
}
/********************************************* * Once the 'scrolled' class is toggled * we can set any alternative styling that we * want for the menu bar *********************************************/
nav#menu.scrolled { margin: 0; position: fixed; top: 0;
}
nav#menu.scrolled ul li { margin: 0;
}
nav#menu.scrolled h1#sitename { opacity: 1;
}

Animated scroll-dependant menu using scrollMonitor - Script Codes JS Codes

var menu = $('nav#menu');
var watcher = scrollMonitor.create( menu );
watcher.lock();
watcher.stateChange(function() { $(menu).toggleClass('scrolled', this.isAboveViewport)
});
Animated scroll-dependant menu using scrollMonitor - Script Codes
Animated scroll-dependant menu using scrollMonitor - Script Codes
Home Page Home
Developer Maheshc
Username maheshc
Uploaded November 28, 2022
Rating 3
Size 2,748 Kb
Views 14,168
Do you need developer help for Animated scroll-dependant menu using scrollMonitor?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Maheshc (maheshc) Script Codes
Create amazing art & images with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!