我有 jQuery 抖动效果,但由于某种原因,当我切换弹跳效果时,鼠标悬停在我想要影响的元素上时,它会移动但不会弹跳。
<div class="thumb-shadow">
<a href="services/solar">
<img width="160" height="160" alt="" class="attachment-post-thumbnail wp-post-image" src="http://localhost:81/dcdccd/cms/wp-content/uploads/solar.jpg" style="">
</a>
</div>
jQuery('.thumb-shadow img').mouseenter(function() {
jQuery(this).effect("bounce", {times: 3}, 500);
});
我忽略了什么?