jquery 的效果。浮动右侧的窗口 ,移动上去向左伸缩

jquery的效果。浮动右侧的窗口,移动上去向左伸缩tab2是移动上去的想过,从右侧向左有个渐变的过程... jquery 的效果。浮动右侧的窗口 ,移动上去向左伸缩 tab2是移动上去的想过 , 从右侧向左 有个渐变的过程 展开
 我来答
匿名用户
推荐于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>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式