[jQuery] Fade In/Out Effect Issue

2009-11-28 Thread AlexCooper
Hello I would like to know if its possible to create a FadeIn/FadeOut effect on my buttons hover event. Currently the transition is static as shown on this site http://cooper.zxq.net The code I implemented to do this hover is just using CSS background-position property. .image { l

[jQuery] Fade in/ out image

2009-10-10 Thread Dave Maharaj :: WidePixels.com
How can i remove the image in an id but keep the div? image here I want to fade the image out then remove it completely from the div keeping the div so the new content can be loading inside it? Dave

[jQuery] Fade in / Out

2009-08-06 Thread Dave Maharaj :: WidePixels.com
I was wondering how do you make text fade in for a specific amount of time then fade out. I have the fade in / out part..i just cant figure out the duration so it stays there after fading in for 5 seconds then fades out. Dave

[jQuery] Fade IN/OUT images onClick

2009-07-14 Thread Piers Plowden
I'm new to jquery so I hope you'll forgive my ignorance... I have a div on a page that I'm hoping can contain multiple images that would fade in and replace an out-going image based on an onClick event. Each image is dedicated to it's a href (there are about 30) and they would all be initi

[jQuery] Fade in, out, then in?

2008-07-03 Thread Miiitch
So I want to be able to fadeIn an element (#logo), then fadeOut the same element, then fadeIn a different element (#content). So the logo fades in, then out, then the content fades in. I've already got the logo fading part: $("#logo").fadeTo(1000, 0).fadeIn(1000) .fadeTo(4000, 1).fadeOut(1000);