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>