jquery实现标题字体变换的滑动门菜单效果

时间:2021-05-26

本文实例讲述了jquery实现标题字体变换的滑动门菜单效果。分享给大家供大家参考。具体如下:

这里使用jquery字体会变大的网页滑动门菜单,当把鼠标放在“门”上的时候,门内的菜单字体会变大变色,对应的内容同时切换,不知如何形容本效果,所以就叫字体会变的滑动门吧。

运行效果截图如下:

在线演示地址如下:

http://demo.jb51.net/js/2015/jquery-font-cha-tab-menu-style-codes/

具体代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>字体变大变色的滑动门菜单</title><script type="text/javascript" src="jquery-1.6.2.min.js"></script><style type="text/css">body,ul,li,div{ margin:0; padding:0;}ul{ list-style:none;}ul li{ float:left;}.nav{ width:204px; height:30px; border:1px #ccc solid; border-bottom-width:0; border-right-width:0px; margin:20px auto 0;}.content{ width:203px; height:150px; border:1px #ccc solid; margin:0 auto;}ul.nav li{ width:50px; height:30px; border-right:1px #ccc solid; text-align:center; line-height:30px; background:#eee;}ul.nav li.color{ position:relative; height:31px; _top:1px; color:#F60; font-size:22px; font-weight:bold; background:#FFF;}ul.content li{ width:202px; height:170px; display:none; text-align:center; line-height:170px;}ul.content li.vis{ display:block; }</style></head><body> <ul class="nav"> <li class="color">新闻</li> <li>娱乐</li> <li>体育</li> <li>招聘</li> </ul> <ul class="content"> <li class="vis">新闻内容</li> <li>娱乐内容</li> <li>体育内容</li> <li>招聘内容</li> </ul><script type="text/javascript">function getElement(e){ if($('#'+e).html()){ return $('#'+e); }else{ return $('.'+e); }}var onNav={ changeContent:function(navElement,conElement,visClass,colorClass){ $nav=getElement(navElement).find('li'); $content=getElement(conElement).find('li'); $nav.each(function(index){ $(this).mouseover(function(){ $(this).addClass(visClass) .siblings().removeClass(visClass); $content.eq(index).addClass(colorClass) .siblings().removeClass(colorClass); }); }); }}onNav.changeContent("nav","content","color","vis");</script></body></html>

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

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章