Dhtml 转换
当用户单击按钮时,是否可以将幻灯片从左向右移动。 我正在使用 progid:DXImageTransform.Microsoft.Slide(slideStyle='PUSH', band=1)。 它从右向左移动,就像我需要从左向右移动一样。
Is it possible to move the slide from left to right, when the user click the button. I am using progid:DXImageTransform.Microsoft.Slide(slideStyle='PUSH', bands=1). It moves from right to left as way I need to move from left to right.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅限 IE 的 DXImageTransform 函数。
最常见的是,这可以使用任何流行的 JavaScript 库来完成,例如 jQuery 或 Prototype/Scriptaculous。
使用 Prototype/Scriptaculous 你可以这样做:
DXImageTransform in an IE-only function.
Most commonly this can be accomplished using any popular JavaScript library, such as jQuery or Prototype/Scriptaculous.
Using Prototype/Scriptaculous you could do this:
您不会喜欢这个,但由于过渡是 IE 的特定功能,我强烈建议完全避免使用它们,并寻找另一种方法来创建您想要的效果。
我首先查看 Mootools 动画,并考虑它们如何与 AJAX 技术交互。
You're not going to like this, but since transitions are an IE specific feature I would strongly recommend avoiding them entirely and finding another way to create the effect you want.
I'd start by looking at Mootools animations and consider how these can interact with AJAX techniques.