我正在使用 Jquery 为图像设置动画。但我收到以下错误
TypeError: $(...).roundabout is not a function
我的代码如下。
<div class="gallery" >
<ul>
<li><img src="/images/15-1368597729-csk12-600.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="/images/15-larry-page-300.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="/images/16-1368691358-harbajan-singh-600.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="/images/16-uma-bharti-300.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="/images/Firefox_wallpaper.png" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="/images/empty_user.png" alt="Test Image 1" width="320px" height="320px" /> </li>
</ul>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.roundabout.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("ul").roundabout({
shape: 'lazySusan'
});
});
</script>
但它引发了以下错误。
TypeError: $(...).roundabout 不是函数
请帮我纠正这个问题。提前致谢..