4

こんにちは私は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>
4

2 に答える 2

0

メソッドを使用する必要があります:pause()、play()。

$(<your_element>).hover(function() {
    <your_reel>.pause();
},function() {
    <your_reel>.play();
});
于 2012-12-17T10:04:22.113 に答える