我有红色和blakc divs;当我将鼠标悬停在parrent上时,红色div应该通过将宽度更改为实际宽度来显示!但问题是当宽度为0px时;内容显示!你能帮我解决一下吗?
$('#container').mouseover(function(){
$('#red').stop(true,true).animate({ width: '110px'}, 100);
})
$('#container').mouseout(function(){
$('#red').stop(true,true).animate({ width: '0px'}, 100);
})
更新
Solved Fiddle 但是现在当红色div调整到实际宽度时,文本“观看视频”会变为两行!如何强迫它在一行?