我想知道如何编写 jQuery 以在动画完成时显示隐藏按钮。Button 必须刷新该动画,以便用户可以再次观看该动画。
在这里小提琴:http: //jsfiddle.net/rabelais/ZeMcP/
HTML
<div class="bar1"><div class="alt0"></div></div>
<div id="button"><a href="#">refresh</a></div>
CSS
.bar1 {
width: 200px;
height: 20px;
background-color: black;
}
.alt0 {
width: 0px;
height: 20px;
background-color: orange;
}
#button {
display: none;
}
jQuery
$('.bar1').mouseenter(function(){
$('.alt0').animate({width: "200px"}, 1000)
});