views:

68

answers:

2

hi everyone,

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.

anybody knows ? it an urgent.

Regards

Ravi

+3  A: 

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})
Diodeus
heh, great minds :)
annakata
+2  A: 

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.

annakata