我尝试根据客户端请求为特定图像添加抖动效果。
尽管我掌握了所有知识,但图像并没有动摇。
<div id="shake"><img src="./index_files/image-gallery3.jpg" alt="" /></div>
<script type="text/javascript">
$(document).click(function(){
$("#shake").effect("shake");});
</script>
答案 0 :(得分:1)
你需要包括这个家伙:
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>