search
HomeWeb Front-endJS Tutorialjquery implements how to automatically fix navigation that exceeds the display range to the top of the screen_jquery

In fact, it is not difficult to implement. Let's think about the implementation process in general. First, if the navigation is within the display range, there is no need to modify it. When the navigation exceeds the display range, that is, when the distance between the navigation and the top of the screen is less than 0, we need to let it float on the top of the screen, and then when it is greater than 0, perform a restoration operation. The principle is that simple. Take a rough look at the renderings. Bar
jquery implements how to automatically fix navigation that exceeds the display range to the top of the screen_jquery

Copy the code The code is as follows:

$().ready (function(){
//Navigation distance from the top of the screen
var _defautlTop = $("#navigator").offset().top - $(window).scrollTop();
//Navigation Distance from the left side of the screen
var _defautlLeft = $("#navigator").offset().left - $(window).scrollLeft();
//Navigation default style record, required when restoring the initial style
var _position = $("#navigator").css('position');
var _top = $("#navigator").css('top');
var _left = $(" #navigator").css('left');
var _zIndex = $("#navigator").css('z-index');
//Mouse scroll event
$(window) .scroll(function(){
if($(this).scrollTop() > _defautlTop){
//IE6 does not recognize position:fixed, use position:absolute alone to simulate
if($. browser.msie && $.browser.version=="6.0"){
$("#top").css({'position':'absolute','top':eval(document.documentElement.scrollTop) ,'left':_defautlLeft,'z-index':99999});
//Prevent jitter
$("html,body").css({'background-image':'url(about :blank)','background-attachment':'fixed'});
}else{
$("#navigator").css({'position':'fixed','top':0 ,'left':_defautlLeft,'z-index':99999});
}
}else{
$("#navigator").css({'position':_position,'top' :_top,'left':_left,'z-index':_zIndex});
}
});
});

Not much to say , one thing to note is that IE6 does not recognize position:fixed, so you need to use position:absolute to simulate it, and then calculate the value of top in real time. In addition, you need to add two styles to html and body to prevent jitter when scrolling. Specifically, you can Learn about "Perfect solution to the bug that IE6 does not support position:fixed".

Another thing to note is that the width of the navigation must be a fixed value. It cannot be auto or 100% because fixed and absolute are not recognized. Of course, you can also manually obtain the width of the navigation and then write it to float. In the navigation style, there is a premise. The original navigation style cannot have: position: relative. This may be the case. The simplest way is to set the navigation width.

The above code can be copied to the HTML footer code set in the background. If there is a problem with the floating navigation width, please refer to the solution I just did.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
足球导航语音包在哪个导航软件足球导航语音包在哪个导航软件Nov 09, 2022 pm 04:33 PM

足球导航语音包在“高德导航”软件中,是高德地图车机版导航语音包的其中一种,内容为黄健翔足球解说版本的导航语音。设置方法:1、打开高德地图软件;2、点击进入“更多工具”-“导航语音”选项;3、找到“黄健翔热血语音”,点击“下载”;4、在弹出的页面,点击“使用语音”即可。

百度地图 App 最新版本 18.8.0 发布,首次引入红绿灯雷达功能,并新增实时停车推荐功能百度地图 App 最新版本 18.8.0 发布,首次引入红绿灯雷达功能,并新增实时停车推荐功能Aug 06, 2023 pm 06:05 PM

百度地图App安卓版/iOS版均已发布18.8.0版本,首次引入红绿灯雷达功能,业内领先据官方介绍,开启红绿灯雷达后,支持开车自动探测红绿灯,不用输入目的地,北斗高精可以实时定位,全国100万+红绿灯自动触发绿波提醒。除此之外,新功能还提供全程静音导航,使图区更简洁,关键信息一目了然,且无语音播报,使驾驶员更加专注驾驶百度地图于2020年10月上线红绿灯倒计时功能,支持实时读秒预判,导航会在接近红绿灯路口时,自动展示倒计时剩余秒数,让用户时刻掌握前方路况。截至2022年12月31日,红绿灯倒计时

导航地图上横着的8字是什么导航地图上横着的8字是什么Jun 27, 2023 am 11:43 AM

导航地图上横着的8字是霾,中度是黄色8预警信号,重度是橙色8预警信号。

高德地图推出升级版驾车 ETA 服务:实时解析当前路况,预估到达时间更精准高德地图推出升级版驾车 ETA 服务:实时解析当前路况,预估到达时间更精准Apr 30, 2024 am 08:37 AM

本站4月29日消息,高德地图官宣推出升级版的驾车ETA(本站注:ETA即预估到达时间,指的是用户在当前时刻出发按照给定路线前往目的地预计需要的时长)服务,该服务旨在帮助用户的路线规划时长和路况预估更为精准,辅助用户进行出行决策。该地图应用是最新升级的高德地图App,引入了“超大规模图卷积神经网络模型”,该模型可以更好地捕捉和学习交通流动规律,支持城市道路网络、高速公路系统,能以高精度刻画交通状况的时空动态变化。在此外,全新版本的地图还进一步融合了iTransformer时序预测模型,支持实时解析

uniapp中如何实现页面跳转和导航uniapp中如何实现页面跳转和导航Oct 20, 2023 pm 02:07 PM

uniapp中如何实现页面跳转和导航uniapp是一款支持一次编码多端发布的前端框架,它基于Vue.js,开发者可以使用uniapp快速开发移动端应用。在uniapp中,实现页面跳转和导航是非常常见的需求。本文将介绍uniapp中如何实现页面跳转和导航,并提供具体的代码示例。一、页面跳转使用uniapp提供的方法进行页面跳转uniapp提供了一组方法用于实现

如何通过Vue实现图片的浏览和缩略图导航?如何通过Vue实现图片的浏览和缩略图导航?Aug 18, 2023 pm 02:51 PM

如何通过Vue实现图片的浏览和缩略图导航?随着Web应用程序的发展,图片在我们的日常生活中扮演着越来越重要的角色。在许多情况下,我们需要实现图片的浏览和缩略图导航功能。这篇文章将介绍如何利用Vue框架实现这一功能,并提供代码示例。在Vue中,我们可以使用Vue插件来实现图片的浏览和缩略图导航功能。一个流行的插件是vue-gallery,它提供了简单易用的接口

使用PHP和XML实现网页的导航和菜单使用PHP和XML实现网页的导航和菜单Aug 07, 2023 am 11:34 AM

使用PHP和XML实现网页的导航和菜单导航和菜单是网页中常见的元素,它们可以使用户快速地找到所需的信息或功能。在网页开发中,PHP和XML经常被用来处理和存储导航和菜单的数据。本文将介绍如何使用PHP和XML实现网页导航和菜单,并提供相关的代码示例。一、创建XML菜单数据文件首先,我们需要创建一个XML文件来存储我们的菜单数据。以下是一个示例的XML文件,它

百度地图导航屏幕常亮怎么设置百度地图导航屏幕常亮怎么设置Apr 01, 2024 pm 06:22 PM

百度地图是很多小伙伴们外出都会使用的,可以提供最快捷的路线,而且还可以查看各种不同的出行方式,想要来设置导航屏幕常量的话,就来PHP中文网看小编带来的方法吧。百度地图设置导航屏幕常亮方法分享1.首先点击打开手机中的百度地图APP进入后,在页面的左上方位置点击【个人头像】打开。2.来到个人中心页面后,在其中找到【设置】功能,并在上面点击进入。3.接下来在设置页面里点击【通用设置】这一项进入。4.在通用设置页面里有一个【屏幕常亮】功能,在它的后面显示有一个开关按钮,点击圆形的滑块把按钮设置为开启状态

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools