July 8, 2011

Optional for Microsoft.Fade

Question by pavan

I am converting my HTC file to jquery plugin.

In my HTC file i am using below Microsoft.Fade.

progid:DXImageTransform.Microsoft.Fade(duration=0.15,overlap=1.0)

It is IE only thing. So i want optional thing for other browsers.

Is there any optional thing for this.

Answer by Starx

On jQuery, There are several option to fade.

To certain opacity level, on certain time.

$("div").fadeTo(1000, 15);

or fade Out completely

$("#div").fadeOut(1000);

or fade in

$("#div").fadeIn(1000);

Author: Nabin Nepal (Starx)

Hello, I am Nabin Nepal and you can call me Starx. This is my blog where write about my life and my involvements. I am a Software Developer, A Cyclist and a Realist. I hope you will find my blog interesting. Follow me on Google+

...

Please fill the form - I will response as fast as I can!