jquery 的效果。浮动右侧的窗口 ,移动上去向左伸缩
jquery的效果。浮动右侧的窗口,移动上去向左伸缩tab2是移动上去的想过,从右侧向左有个渐变的过程...
jquery 的效果。浮动右侧的窗口 ,移动上去向左伸缩 tab2是移动上去的想过 , 从右侧向左 有个渐变的过程
展开
1个回答
推荐于2016-03-27
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script class="jquery library" src="/js/sandbox/jquery/jquery-1.8.2.min.js" type="text/javascript"></script>
<title>
RunJS 演示代码
</title>
<style>
*{
margin:0;
padding:0;
}
div{
width:50px;
height: 30px;
background-color:black;
color:white;
line-height:30px;
margin-bottom:10px;
text-align:center;
position:fixed;
right:0px;
top:100px;
float:right;
cursor:pointer;
}
div:nth-child(2){
top:140px;
}
div:nth-child(3){
top:180px;
}
div:nth-child(4){
top:220px;
}
</style>
<script>
jQuery(function($){
$("div").hover(function(){
var me = $(this);
me.stop().animate({
width: "100px"
},"fast",function(){
me.width("100px");
});
},function(){
var me = $(this);
me.stop().animate({
width: "50px"
},"fast",function(){
me.width("50px");
});
});
});
</script>
</head>
<body>
<div>
tab1
</div>
<div>
tab2
</div>
<div>
tab3
</div>
<div>
tab4
</div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询