手风琴效果

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手风琴效果相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="js/jquery-1.12.1.js"></script> 
<title>手风琴效果</title>
<style>
ul , h2 { padding:0; margin:0; }
li { list-style:none; }
body{}
.sfq{width:300px; height: 200px; float: left; }
.red{ background-color: red; }
.green{ background-color: green; }
.yellow{ background-color: yellow; }
.blue{ background-color:blue; }
.orange{ background-color: orange; }
</style>
<script type="text/javascript">
$(function(){
	$(‘.sfq‘).mouseover(function(){
		$(this).stop().animate({width:300},500).siblings().stop().animate({width:30},500)
	})
})
</script>
</head>
<body>
<div class="sfq red"></div>
<div class="sfq green"></div>
<div class="sfq yellow"></div>
<div class="sfq blue"></div>
<div class="sfq orange"></div>
</body>
</html>

技术分享

 

 

以上是关于手风琴效果的主要内容,如果未能解决你的问题,请参考以下文章

214 jQuery案例:王者荣耀手风琴效果

手风琴效果

jquery实现手风琴效果

风琴效果

手风琴效果案例

jQuery手风琴菜单 跪求图面上面这种JQ手风琴效果,带排行的。。。