Dhtml 转换

发布于 2024-07-18 09:36:37 字数 130 浏览 4 评论 0原文

当用户单击按钮时,是否可以将幻灯片从左向右移动。 我正在使用 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 技术交流群。

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

发布评论

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

评论(2

花落人断肠 2024-07-25 09:36:37

仅限 IE 的 DXImageTransform 函数。

最常见的是,这可以使用任何流行的 JavaScript 库来完成,例如 jQuery 或 Prototype/Scriptaculous。

使用 Prototype/Scriptaculous 你可以这样做:

new Effect.Move('divName',{mode:'relative',x:-500,y:0})

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:

new Effect.Move('divName',{mode:'relative',x:-500,y:0})
筱武穆 2024-07-25 09:36:37

您不会喜欢这个,但由于过渡是 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.

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