赞
踩
JQuery实战训练,1.5秒返回页面,2.鼠标滑过显示内容,3.轮展图,4.返回顶部,5.右击显示菜单,6.内容编辑,7.购物车结算,8.百度换肤
个人主页:http://www.itit123.cn/ 更多干货等你来拿
- <!doctype html>
- <html>
- <head>
- <!--声明当前页面的编码集:charset=gbk,gbk2312(中文编码),utf-8(国际编码)-->
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- <title>鼠标划过显示隐藏内容</title>
- <meta name="Keywords" content="关键词,关键词">
- <meta name="Description" content="">
- <!--css,js-->
- <style type="text/css">
- *{margin:0;padding:0;}
- div{width:200px;height:200px;}
- .box1{background:#066;cursor:pointer;}
- .box2{background:#0cf;display:none;}
- .show{display:block;}
- </style>
- </head>
- <body>
- <div class="box1" title="鼠标划过此处下面的图片会显示"></div>
- <div class="box2"></div>
- <script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
- <script type="text/javascript">
- $(function(){
- $(".box1").mouseover(function(){
- $(".box2").addClass("show");
- }).mouseout(function(){
- $(".box2").removeClass("show");
- });
- });
- </script>
- </body>
- </html>
- <span style="white-space:pre"> </span>$(function(){
- // 左侧菜单栏切换 项目代码
- $(".menu").find("li").mouseover(function(){
- $(this).find(".show_menu").addClass("show");
- }).mouseout(function(){
- $(this).find(".show_menu").removeClass("show");
- });
- // 显示二维码
- $(".sys_qq").mouseover(function(){
- $(this).find(".code").fadeTo("slow",1);
- }).mouseout(function(){
- $(this).find(".code").hide();
- });
- });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。