HTML
<div class="wrapper">
<a href="#" class="tabs"><span>Tab-1 Text</span></a>
<a href="#" class="tabs"><span>Tab-2 Text</span></a>
<a href="#" class="tabs"><span>Tab-3 Text</span></a>
<a href="#" class="tabs"><span>Tab-4 Text</span></a>
</div>
CSS
.wrapper{
width:200px;
height:auto;
display:inline-block;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-top-right-radius: 3px;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-topright: 3px;
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.wrapper .tabs{
height:30px;
display:block;
-webkit-box-shadow: 1px 1px 6px #ccc inset;
-moz-box-shadow: 1px 1px 6px #ccc inset;
box-shadow: 1px 1px 6px #ccc inset;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-top-right-radius: 3px;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-topright: 3px;
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
margin-bottom:1px;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
border-right:1px solid #ccc;
text-decoration:none;
font-size:11px;
line-height:30px;
overflow:hidden;
width:30px;
}
.wrapper .tabs span{
padding-left:35px;
color:#000000;
font-weight:bold;
height:30px;
display:block;
width:auto;
}
查询
$(".wrapper").on("mouseenter",".tabs",function(){
$(this).stop().animate({
width:"202px",
duration:"fast"
});
}).on("mouseleave",".tabs",function(){
$(".tabs").stop().animate({
width:"30px",
duration:"fast"
});
});
提琴手
当悬停任何选项卡时,选项卡会拉伸并显示隐藏文本,但如果我将动画宽度选项更改为“自动”,效果不起作用。我怎样才能解决这个问题?