请教一下:jquery 怎么实现 div 向左展开,向右收缩; 我只会向右展开,向左收缩,用的是 width:'toggle'
1个回答
展开全部
<!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;
}
.content{
width:10px;
height:100px;
border:1px solid black;
right:0;
top:200px;
position:fixed;
}
</style>
<script>
$(function(){
$(".content").mouseover(function(){
$(this).stop().animate({
width: "100px"
}).mouseout(function(){
$(this).stop().animate({
width:"10px"
});
});
});
})
</script>
</head>
<body>
<div class='content'>
</div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询