You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Anti-Expose Created Sep 8, 2009

This thread is solved

Views: 1377     Replies: 2     Last reply Oct 15, 2009  
You must login first before you can use this feature

Cidious

Posts: 1

Registered:
Sep 8, 2009

Anti-Expose

Posted: Sep 8, 2009

Is it possible to 'soften' some single DIV using Expose tool?
Kind of like 'Anti Expose effect'.
I want to indicate an AJAX activity for one element of the site.
Is Expose suitable for that effect?

Tero
Author of jQuery Tools and this website + JavaScript developer of Flowplayer.

Posts: 1867

Registered:
Nov 16, 2007

» Anti-Expose

Posted: Sep 9, 2009

Reply to: Anti-Expose, from Cidious
I think the best thing to do here is to use jQuery's fadeTo method. Example:


$("#myDiv").fadeTo("slow", 0.7);

degenerate

Posts: 156

Registered:
Sep 19, 2008

» » Anti-Expose

Posted: Oct 15, 2009

Reply to: » Anti-Expose, from tipiirai
Then in your ajax response (completion) you would just fade back to full opacity (1 or 1.0) to finish the effect.