MooTools 1.1:使setstyle功能平滑过渡

发布于 2024-12-20 01:30:28 字数 471 浏览 1 评论 0原文

到目前为止,我已经完成了这个工作:

<script type="text/javascript"> 
    window.addEvent('domready', function() {
        $('casestudies').addEvent('click', function( ){
            $('gomobileinfo').setStyle('margin-left', '-500px');
        });
    });
</script>

非常简单,并且工作正常;基本上是向左滑动一个div。但我正在努力让它顺利过渡,而不是立即过渡。我知道在 MooTools 1.2 中使用 tweenmorph 非常简单,但我必须在这个项目中使用 1.1 版本。

So I've got this working so far:

<script type="text/javascript"> 
    window.addEvent('domready', function() {
        $('casestudies').addEvent('click', function( ){
            $('gomobileinfo').setStyle('margin-left', '-500px');
        });
    });
</script>

really simple, and works fine; basically slides a div to the left. But I'm trying to make it transition smoothly instead of immediately. I know it would be really simple to use tween or morph with MooTools 1.2, but I have to use version 1.1 for this project.

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

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

发布评论

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

评论(1

总攻大人 2024-12-27 01:30:28

您可以使用

new Fx.Style('gomobileinfo', 'margin-left', {duration : 2000}).start(-500);

演示:

new Fx.Style('gomobileinfo', 'margin-left', {duration : 2000}).start(-500);
#gomobileinfo{
    width:100px;
    height:200px;
    background:red;
    margin-left:500px;
}
<script src="http://cdn.strategiqcommerce.com/ajax/libs/mootools/1.1.2/mootools-yui-compressed.js"></script>
<div id="gomobileinfo">Go Mobile</div>

http://jsfiddle.net/A5fVx/

PS 这个 MooTools 版本真的很旧,您应该升级和/或告诉老板升级。

You can use

new Fx.Style('gomobileinfo', 'margin-left', {duration : 2000}).start(-500);

Demo:

new Fx.Style('gomobileinfo', 'margin-left', {duration : 2000}).start(-500);
#gomobileinfo{
    width:100px;
    height:200px;
    background:red;
    margin-left:500px;
}
<script src="http://cdn.strategiqcommerce.com/ajax/libs/mootools/1.1.2/mootools-yui-compressed.js"></script>
<div id="gomobileinfo">Go Mobile</div>

http://jsfiddle.net/A5fVx/

P.S. this MooTools version is REALLY old, you should upgrade and/or tell to the boss to upgrade.

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