0

我有 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);
});

我忽略了什么?

4

1 回答 1

0

来自Spokey提供的 jsfiddle 作品。

我的结论是,您不包括jQuery UI

尝试添加它。

<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

从您的评论中,

可能会错过检查它 在此处输入图像描述

于 2013-08-02T12:41:14.217 回答