嗨,我是使用 jquery reel 的新手。我想了解当您将鼠标悬停在 jquery reel 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>