在 scriptaculous 中将函数排入队列的首选方法是什么?
我有一个应用程序,它使用 scriptaculous 的效果队列来渲染游戏的视图。 Ajax 请求从服务器读取事件,从这些事件中生成效果并排队。
有些事件没有任何动画,只有要执行的代码。可以通过创建虚拟效果并使用 afterFinish 选项来实现。
有更好的办法吗?
I have an application, that uses scriptaculous' effects queue to render the view of a game.
Ajax-requests read events from a server, from these events, effects are generated and enqueued.
Some events have nothing to animate, only code to execute. It is possible, by creating a Dummy-effect, and use the afterFinish option.
Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以编写自己的效果类并利用各种 Scriptaculous/Prototype 的优点。
这是我写的一个示例。
Yes, You can write your own effect class and take advantage of all kinds of Scriptaculous/Prototype goodness.
Here is an example I wrote.
似乎有一个未记录的 Effect 类,它基本上是我的虚拟类:Effect.Event(options),由 scriptaculous 在内部使用。出于我的目的(只是将一个函数排队),它完成了这项工作。
There seems to be an undocumented Effect-class which is basically my dummy class: Effect.Event(options), which is used internally by scriptaculous. For my purpose (just enqueueing a function) it does the Job.