博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery实现可以中英切换的导航条
阅读量:5052 次
发布时间:2019-06-12

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

 

 

 

html

  css

*{padding:0; margin:0;}li{ list-style:none; }a{ text-decoration:none;}.nav{ width:100%; height:40px; background:#222; margin-top:100px; overflow:hidden;}.list{ width:1000px; height:40px; margin:0 auto;}.list li{ float:left;}.list li a{ display:block; }.list b,.list i{ display:block; padding:0 30px; color:#aaa; line-height:40px; text-align:center;}.list b{ font-weight:100}.list i{ font-style:normal; background:#333; color:#fff;}

  js

$(document).ready(function() {	$(".list a").hover(function() {		$(this).stop().animate({			"margin-top":-40		},300)					},function(){				$(this).stop().animate({			"margin-top":-40	},300)					});

  效果:

 

 

2017-09-23   12:42:54

 

转载于:https://www.cnblogs.com/guangzhou11/p/7580853.html

你可能感兴趣的文章
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
oracle连接的三个配置文件(转)
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
二叉树的遍历问题总结
查看>>
聊天室(C++客户端+Pyhton服务器)_1.框架搭设
查看>>
pytho logging
查看>>
Python内置函数(29)——help
查看>>
《大道至简》读后感——论沟通的重要性
查看>>
java中Hashtable和HashMap的区别(转)
查看>>
对Feature的操作插入添加删除
查看>>
git使用中的问题
查看>>
yaml文件 .yml
查看>>
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>
WCF 配置文件
查看>>
oracle导出/导入 expdp/impdp
查看>>
2018.11.15 Nginx服务器的使用
查看>>