博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一款基于jquery滑动后固定于顶部的导航
阅读量:5083 次
发布时间:2019-06-13

本文共 3148 字,大约阅读时间需要 10 分钟。

之前已为大家介绍了好多css3实现的。今天分享一款基于jquery滑动后固定于顶部的导航。这款导航的特点是初始位于顶部下面一百个像素,当鼠标滚动时到下方,导航一直处于顶部。效果图如下:

   

实现的代码。

html代码:

Scroll down

And watch the menu bar

css代码:

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; }

js代码:

var menu = $('nav#menu');        var watcher = scrollMonitor.create(menu);        watcher.lock();        watcher.stateChange(function () {            $(menu).toggleClass('scrolled', this.isAboveViewport)        }); //@ sourceURL=pen.js

注:本文原创文章,转载请注明原文地址:

转载于:https://www.cnblogs.com/liaohuolin/p/3995971.html

你可能感兴趣的文章
jQuery.form.js使用
查看>>
(转)linux sort,uniq,cut,wc命令详解
查看>>
关于ExecuteNonQuery执行的返回值(SQL语句、存储过程)
查看>>
UVa540 Team Queue(队列queue)
查看>>
mysql数据增删改查
查看>>
shell中下载最新版本或指定版本的办法(Dockerfile 中通用)
查看>>
极客时间-左耳听风-程序员攻略-分布式架构工程设计
查看>>
akka之种子节点
查看>>
不知道做什么时
查看>>
matlab 给某一列乘上一个系数
查看>>
密码学笔记——培根密码
查看>>
Screening technology proved cost effective deal
查看>>
MAC 上升级python为最新版本
查看>>
创业老板不能犯的十种错误
查看>>
Animations介绍及实例
查看>>
判断请求是否为ajax请求
查看>>
【POJ2699】The Maximum Number of Strong Kings(网络流)
查看>>
spring boot配置跨域
查看>>
BZOJ 1996 合唱队(DP)
查看>>
进击吧!阶乘——大数乘法
查看>>