jQuery实现背景弹性滚动的导航效果
来源: 阅读:831 次 日期:2016-06-17 14:22:30
温馨提示: 小编为您整理了“jQuery实现背景弹性滚动的导航效果”,方便广大网友查阅!

这篇文章主要介绍了jQuery实现背景弹性滚动导航效果的方法,涉及jQuery动态操作页面元素样式的相关技巧,需要的朋友可以参考下

本文实例讲述了jQuery实现背景弹性滚动的导航效果。分享给大家供大家参考,具体如下:

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>背景弹性滚动的导航效果</title>

<meta http-equiv="content-type" content="text/html;charset=gb2312" />

<!--把下面代码加到<head>与</head>之间-->

<style type="text/css">

.nav-wrap {

margin: 0 auto;

background-color: #121212;

border-top: 1px solid #FFF;

border-bottom: 1px solid #FFF;

}

.group:after {

visibility: hidden;

display: block;

font-size: 0;

content: " ";

clear: both;

height: 0;

}

*:first-child+html .group { /* IE7 */

zoom: 1;

}

#example {

width: 960px;

margin: 0 auto;

list-style: none;

position: relative;

}

#example li {

display: inline;

}

#example li a {

position: relative;

z-index: 200;

color: #AAA;

font-size: 14px;

display: block;

float: left;

padding: 12px 10px 10px 10px;

text-decoration: none;

text-transform: uppercase;

}

#example li a:hover {

color: #FFF;

}

#example #magic-line-two {

width: 100px;

position: absolute;

top: 0;

left: 0;

background: #666;

z-index: 100;

-moz-border-radius: 5px;

-webkit-border-radius: 5px;

}

.current a {

color: #FFF !important;

}

</style>

<script type="text/javascript" src="jquery.min.js"></script>

<script type="text/javascript">

$(function(){

var $el, leftPos, newWidth,

$mainNav = $("#example");

/*

EXAMPLE

*/

$mainNav.append("<li id='magic-line-two'></li>");

var $magicLineTwo = $("#magic-line-two");

$magicLineTwo

.width($(".current").width())

.height($mainNav.height())

.css("left", $(".current a").position().left)

.data("origLeft", $(".current a").position().left)

.data("origWidth", $magicLineTwo.width())

.data("origColor", $(".current a").attr("rel"));

$("#example li").find("a").hover(function() {

$el = $(this);

leftPos = $el.position().left;

newWidth = $el.parent().width();

$magicLineTwo.stop().animate({

left: leftPos,

width: newWidth,

backgroundColor: $el.attr("rel")

})

}, function() {

$magicLineTwo.stop().animate({

left: $magicLineTwo.data("origLeft"),

width: $magicLineTwo.data("origWidth"),

backgroundColor: $magicLineTwo.data("origColor")

});

});

});

</script>

</head>

<body>

预览效果时左下角会提示错误,而且看不到效果,刷新一下就可以看到效果了;当然,在实际使用中,不会出现这样的问题。<br>

<!--把下面代码加到<body>与</body>之间-->

<div class="nav-wrap">

<ul class="group" id="example">

<li class="current"><a href="#" _fcksavedurl="#">Home</a></li>

<li><a href="#" _fcksavedurl="#">About me</a></li>

<li><a href="#" _fcksavedurl="#">Our Team</a></li>

<li><a href="#" _fcksavedurl="#">Portfolio</a></li>

<li><a href="#" _fcksavedurl="#">The Show</a></li>

<li><a href="#" _fcksavedurl="#">Videos</a></li>

<li><a href="#" _fcksavedurl="#">CSS/HTML</a></li>

<li><a href="#" _fcksavedurl="#">jQuery</a></li>

<li><a href="#" _fcksavedurl="#">Navigation</a></li>

<li><a href="#" _fcksavedurl="#">Wordpress</a></li>

<li><a href="#" _fcksavedurl="#">Contact</a></li>

</ul>

</div>

</body>

</html>

希望本文所述对大家jQuery程序设计有所帮助。

更多信息请查看网络编程
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!

2025国考·省考课程试听报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:
云南网警报警专用图标
Baidu
map