本体ダウンロード&デモ
http://jackrugile.com/jrumble/
■常に震える


■ホバーしたら震える
[html]<br /><script src="jquery本体のパス" type="text/javascript"></script><br /><script src="jrumbleプラグインへの相対パス"></script><br /><br /><!– スクリプト部分 –><br /><script type="text/javascript"><br />$(function() {<br /> $(‘動かしたい要素’).jrumble({<br /> x: 2,<br /> y: 2,<br /> rotation: 1<br /> });<br /> $(‘動かしたい要素’).hover(function(){<br /> $(this).trigger(‘startRumble’);<br /> }, function(){<br /> $(this).trigger(‘stopRumble’);<br /> });<br />});<br /></script><br />[/html]
<