停止 jQuery counterUp 插件脚本重新加载

Stop jQuery counterUp Plugin Script from Reloading

我正在使用一个简单的 counterUp 脚本,但是当网站的列通过媒体查询调整大小时,它会再次触发。任何人都可以建议 运行 这个的最佳方法,并让它只运行一次而不会被重新触发,除非页面被刷新?谢谢!

<h3><span class="counter">457</span></h3>

$(document).ready(function() { //when document is ready
        $('.counter').counterUp({
            delay: 10,
            time: 1800
        });
    });

修复了以下 counterUp 问题:

$( window ).resize(function() { //Prevent being triggered again with window resize
        $('.counter').destroy();

    });

已解决! :)

修复了以下 counterUp 问题:

$( window ).resize(function() { //Prevent being triggered again with window resize
        $('.counter').destroy();

    });

已解决! :)