我正在使用来自以下位置的JQ回旋插件:

http://fredhq.com/projects/roundabout/

设置并运行它-但努力使其中一项可钩挂事件起作用。
在所有演示中实际上都没有语法示例,因此这可能只是我的愚蠢。

我正在按以下步骤启动回旋处:

<script>
    $(document).ready(function() {

    $('#productRoundel').roundabout(
        {
            shape: 'tearDrop',
            focusBearing: '5.0'
        });

    $("#productRoundel").roundabout.animationEnd(function() {

        alert("hello");

    });

});
</script>


谁能给我一个正确语法的指针,让动画完成后触发事件,以便我可以获取当前幻灯片的ID?

谢谢,
史蒂夫

最佳答案

免责声明:我尚未测试或使用此插件,但是您应该能够绑定到该事件以监听它。

<script>
    $(document).ready(function() {

    $('#productRoundel').roundabout(
        {
            shape: 'tearDrop',
            focusBearing: '5.0'
        });

    $("#productRoundel").bind( 'animationEnd', function() {

        alert("hello");

    });

});

09-26 19:39