JQuery roundabout - 获取所选
  • 的ID每次环岛完成移动时
  • 发布于 2025-01-01 07:02:48 字数 620 浏览 0 评论 0原文

    我使用的 JQ roundabout 插件来自:

    http://frdhq.com/projects/roundabout/

    让它设置并工作 - 但很难让一个可挂钩的事件工作。 任何演示中都没有真正的语法示例,因此这可能只是我的愚蠢。

    我按如下方式启动循环:

    <script>
        $(document).ready(function() {
    
        $('#productRoundel').roundabout(
            {
                shape: 'tearDrop',
                focusBearing: '5.0'
            });
    
        $("#productRoundel").roundabout.animationEnd(function() {
    
            alert("hello");
    
        }); 
    
    });
    </script>
    

    任何人都可以给我一个有关正确语法的指针,以在动画完成后触发事件,以便我可以获得当前幻灯片的 ID?

    谢谢, 史蒂夫

    I'm using the JQ roundabout plugin from:

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

    Have it set up and working - but struggling to get one of the hookable events to work.
    There's not really a syntax example on any of the demos so it may just be my stupidity.

    I'm initiating the roundabout as follows:

    <script>
        $(document).ready(function() {
    
        $('#productRoundel').roundabout(
            {
                shape: 'tearDrop',
                focusBearing: '5.0'
            });
    
        $("#productRoundel").roundabout.animationEnd(function() {
    
            alert("hello");
    
        }); 
    
    });
    </script>
    

    Can anyone give me a pointer on the correct syntax to get an event triggering once the animation has completed so that I can then get the ID of the current slide?

    Thanks,
    Steve

    如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(1

    咿呀咿呀哟 2025-01-08 07:02:48

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

    <script>
        $(document).ready(function() {
    
        $('#productRoundel').roundabout(
            {
                shape: 'tearDrop',
                focusBearing: '5.0'
            });
    
        $("#productRoundel").bind( 'animationEnd', function() {
    
            alert("hello");
    
        }); 
    
    });
    

    Disclaimer: I have not tested or used this plugin, but you should be able to bind to the event to listen for it.

    <script>
        $(document).ready(function() {
    
        $('#productRoundel').roundabout(
            {
                shape: 'tearDrop',
                focusBearing: '5.0'
            });
    
        $("#productRoundel").bind( 'animationEnd', function() {
    
            alert("hello");
    
        }); 
    
    });
    

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文