MooTools 1.1:使setstyle功能平滑过渡
到目前为止,我已经完成了这个工作:
<script type="text/javascript">
window.addEvent('domready', function() {
$('casestudies').addEvent('click', function( ){
$('gomobileinfo').setStyle('margin-left', '-500px');
});
});
</script>
非常简单,并且工作正常;基本上是向左滑动一个div。但我正在努力让它顺利过渡,而不是立即过渡。我知道在 MooTools 1.2 中使用 tween
或 morph
非常简单,但我必须在这个项目中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
演示:
http://jsfiddle.net/A5fVx/
PS 这个 MooTools 版本真的很旧,您应该升级和/或告诉老板升级。
You can use
Demo:
http://jsfiddle.net/A5fVx/
P.S. this MooTools version is REALLY old, you should upgrade and/or tell to the boss to upgrade.