Tag: joomla extensions

jquery在视口中运行一次.one()

我正在制作一个进度条,并希望它在视口中播放。 我得到了这个工作,但代码现在每次执行,我需要它只运行一次。 因为它现在创建了多个进度条。 ;-)以下代码用于Joomla扩展。 (function ($) { $(document).ready(function() { // Function that checks if it is in view. $(“id ?>”).waypoint(function() { // Function that makes sure it only runs once. // ———–I need to use .one() here but how? // The location of the progressbar code for now lets put a alert in. alert(“run only […]