转换 js 代码以与 jQuery 一起使用

发布于 2024-12-19 17:00:56 字数 455 浏览 2 评论 0原文

我有以下使用 Mootools 的滑块代码:

window.addEvent('domready', function () {
    // Declaring increment vars
    var totIncrement = 0;
    var increment = 230;
    var maxRightIncrement = increment * (-3);

    // FX var
    var fx = new Fx.Style('myList', 'margin-left', {
        duration: 500,
        transition: Fx.Transitions.Back.easeInOut,
        wait: true
    });
});

我想使用 jQuery javascript。谁能告诉我如何将上面的代码转换为 jQuery?

I have the following slider code which uses Mootools:

window.addEvent('domready', function () {
    // Declaring increment vars
    var totIncrement = 0;
    var increment = 230;
    var maxRightIncrement = increment * (-3);

    // FX var
    var fx = new Fx.Style('myList', 'margin-left', {
        duration: 500,
        transition: Fx.Transitions.Back.easeInOut,
        wait: true
    });
});

I wanted to use jQuery javascript. Can anybody tell me how to convert the above code to jQuery?

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

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

发布评论

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

评论(1

岁月流歌 2024-12-26 17:00:56

像这样的事情:

$(document).ready(function(){
    // Declaring increment vars     
    var totIncrement = 0;     
    var increment = 230;     
    var maxRightIncrement = increment*(-3); 

    $('#myList').animate({ 'margin-left' : increment }, 500, 'easeInOut');
});

Something like this:

$(document).ready(function(){
    // Declaring increment vars     
    var totIncrement = 0;     
    var increment = 230;     
    var maxRightIncrement = increment*(-3); 

    $('#myList').animate({ 'margin-left' : increment }, 500, 'easeInOut');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文