Is it possible to apply a fade in fade out effect to javascript code please?
At the moment it just pops up an image and disappears with no effect applied. Thank you in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
FadeIn() and FadeOut() needs a duration set, like FadeIn(“slow”); or FadeOut(“fast”); or even in milliseconds like FadeIn(3000); otherwise the fade effect is’nt really a fade effect as it happens instantly.
The setInterval() function only loops the fades.