我有一个 href 按钮,上面有一段 javascript 动画,可以让篮子在悬停时上下跳跃。但是,我需要将 href 链接更改为输入提交按钮,我似乎无法让动画与输入按钮一起正常工作。
这是我用于动画的 javascript
<script type="text/javascript">
$(document).ready(function(){
$(".button").hover(function(){
$(":not(:animated)", this)
// first jump
.animate({top:"-=6px"}, 200).animate({top:"+=6px"}, 200)
// second jump
.animate({top:"-=3px"}, 100).animate({top:"+=3px"}, 100)
// the last jump
.animate({top:"-=2px"}, 100).animate({top:"+=2px"}, 100);
});
})
</script>
这是HTML
<div class="addbasketbut">
<a class="button" href="#">
<img src="template_images/basketbutton.png" alt="" />Add to Basket
</a>
</div>
这是原始按钮http://jsfiddle.net/tcherokee/wkfrG/的工作 Jsfiddle
我对 Jquery 不太熟悉,因此将不胜感激任何帮助。