jQuery 导航自动跟随滚动的实现代码
(编辑:jimmy 日期: 2025/10/28 浏览:3 次 )
具体代码如下所示:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="front" value="${frontPath}${pageContext.request.contextPath}/f"/>
<c:set var="ajaxUrl" value="${frontPath}${pageContext.request.contextPath}"/>
<c:set var="ctxStatic" value="${pageContext.request.contextPath}/static"/>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="format-detection" content="telephone=no,email=no,adress=no"/>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<title>simpleNavFollowing</title>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
position: relative;
height: 100%;
}
#nav {
position: fixed;
top: 50%;
left: 20px;
margin-top: -140px;
display: inline-block;
vertical-align: middle;
}
#nav a{
display: block;
position: relative;
width: 98px;
height: 28px;
line-height: 28px;
text-align: center;
background-color: #eee;
color: #333;
border-left: 2px solid transparent;
}
#nav a:hover{
width: 98px;
border-left: 2px solid #4b59ff;
}
#nav a p{
position: relative;
z-index: 3;
}
#nav a.active{
background-color: #4b59ff;
color: #fff;
}
#main {
max-width: 1200px;
margin: 0 auto;
}
#main div {
height: 300px;
background-color: #efefef;
border-top: 1px solid #ccc;
}
#main div:nth-child(2n) {
background-color: #fafafa;
}
</style>
<script src="/UploadFiles/2021-04-02/jquery-1.10.2.js">
总结
以上所述是小编给大家介绍的jQuery 导航自动跟随滚动的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
下一篇:Javascript获取某个月的天数