jQuery案例

本文通过三个实例展示了jQuery的实用技巧:1)制作王者荣耀英雄展示图,2)实现图书分类的下拉列表,3)进行页面元素的综合操作。每个实例都包含效果展示和源代码,帮助读者深入理解jQuery的应用。
摘要由CSDN通过智能技术生成

1.王者荣耀英雄展示图

效果图:

图片素材:

 

 

 

 

 源代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			* {
				margin: 0px;
				padding: 0px;
			}

			ul li {
				list-style: none;
			}

			#content {
				width: 800px;
				height: 69px;
				margin: 10px auto;
				padding: 10px;
				background: url(img/bg.png);
			}

			#content ul li {
				width: 69px;
				height: 69px;
				float: left;
				margin-left: 10px;
				overflow: hidden;
				border-radius: 5px;
			}

			#content ul .current {
				width: 224px;
			}

			#content ul .current .big {
				display: block;
			}

			#content ul .current .small {
				display: none;
			}

			.small {
				width: 69px;
				height: 69px;
			}

			.big {
				display: none;
			}
		</style>
		<script src="js/jquery.min.js"></script>
		<script type="text/javascript">
			$(function() {
				$("#content>ul>li").mouseover(function() {
					//让当前li变宽,然后让里面的大图标显示,小图标隐藏
					$(this).stop().animate({
						width: 224,
					});
					$(this).find(".big").stop().fadeIn();
					$(this).find(".small").stop().hide();

					$(this).siblings().stop().animate({
						width: 69,
					});
					$(this).siblings().find(".big").stop().hide();
					$(this).siblings().find(".small").stop().fadeIn();
				});
			})
		</script>
	</head>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值