JQuery环形交叉路口 - 每次环形交叉路口完成移动时获取所选<li>的ID </li>

时间:2012-02-01 19:02:20

标签: jquery syntax

我正在使用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吗?

谢谢, 史蒂夫

1 个答案:

答案 0 :(得分:5)

免责声明:我没有测试或使用过此插件,但您应该能够绑定到该事件以进行侦听。

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

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

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

        alert("hello");

    }); 

});