mootools“fx.styles”和“添加事件” jquery 中的等价物

发布于 2024-11-18 08:44:15 字数 250 浏览 0 评论 0原文

在 jquery 中找到此代码的等效项时遇到很多麻烦

var reveal = new Fx.Styles(div, {
    duration: 200,
    transition: Fx.Transitions.Quad.easeIn,
    wait: true,
    fps: 24
});

reveal.addEvent('onStart', function(){
    tt_has(true);
});

having a lot of trouble finding the equivalent of this code in jquery

var reveal = new Fx.Styles(div, {
    duration: 200,
    transition: Fx.Transitions.Quad.easeIn,
    wait: true,
    fps: 24
});

reveal.addEvent('onStart', function(){
    tt_has(true);
});

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

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

发布评论

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

评论(1

绅刃 2024-11-25 08:44:15

我认为它会变成:

$(div).animate( {left: 500, top: 500}, 200, 'linear');
tt_has(true);

jquery 动画中没有“开始”事件(它们自动启动),因此我们在调用 .animate() 之后立即调用 tt_has(true)代码>,

更多信息此处

希望这有帮助。干杯

I think it would become:

$(div).animate( {left: 500, top: 500}, 200, 'linear');
tt_has(true);

There is no 'start' event in jquery animations (they start automatically), so we call tt_has(true) right after the call to .animate(),

More info here.

Hope this helps. Cheers

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