こんにちは私はjqueryリールを使用するのは比較的新しいです。jqueryリールhttp://test.vostrel.cz/jquery.reel/docs/jquery.reel.htmlにカーソルを合わせたときに停止して再生する方法を知りたいです。停止、開始、一時停止のイベントがあるようですが、ホバー時にアクティブにする方法がわかりません。
ありがとう!
<img id="image360" src='1.jpg' width="610" height="480" />
<script>
$(function(){
//pause on hover (This does not work although hover is registered)
$('#image360').hover(function() {
('#image360').pause();
},
function() {
('#image360').play();
});
//360 settings
$('#image360').reel({
indicator: 5,
cw: true,
frame: 36,
speed: -0.3,
velocity: 2,
brake: .2,
images: 'cmopen/#.jpg'
});
});
</script>