dojo.fx.easing.elasticOut ?

发布于 2024-12-11 22:37:18 字数 397 浏览 0 评论 0原文

为什么下面的代码不起作用? http://jsbin.com/ayugiq/edit#javascript,html,live

我试图从这个例子中“提取”最简单的函数,以使用 dojo 实现 elasticOut 效果: http://dojotoolkit.org/reference-guide/dojo/fx/easing.html (示例位于底部)

抱歉,我并不懒惰,但此代码不起作用,我找不到任何错误。

why does the following code not work?
http://jsbin.com/ayugiq/edit#javascript,html,live

Im trying to "extract" the plainest function for an elasticOut effect with dojo from this example:
http://dojotoolkit.org/reference-guide/dojo/fx/easing.html
(example is at the bottom)

Sorry im not lazy but this code does not work and I cant find any errors.

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

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

发布评论

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

评论(1

岁月蹉跎了容颜 2024-12-18 22:37:18

您需要将要连接的事件从:

dojo.connect(dijit.byId("moveButton"), "onClick", moveIt);

更改为

dojo.connect(dojo. byId("moveButton"), "onclick", moveIt);

'onClick' 事件仅适用于实际的 dijit 小部件,而 'onclick' 事件适用于本机 html 元素,例如<按钮>。另外,dijit.byId() 应该只用于检索实际的小部件,而 dojo.byId 检索纯 html DOM 节点,例如您正在使用的 button

you need to change the event you are connecting to from this:

dojo.connect(dijit.byId("moveButton"), "onClick", moveIt);

to

dojo.connect(dojo.byId("moveButton"), "onclick", moveIt);

the 'onClick' event only applies to actual dijit widgets, whereas the 'onclick' event applies to native html elements such as <button>. Also, dijit.byId() should only be used to retrieve actual widgets, wheras dojo.byId retrieves plain html DOM Nodes such as the button you are using.

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