Jump to content

Css3 Fade In A Div


random1

Recommended Posts

I'm trying to fade in a div using CSS3 only. The CSS code I currently have written is:

 

@-webkit-keyframes FadeIn
{
0%
{
 opacity:0;
}
100%
{
 opacity:1;
}
}
#example
{
-webkit-animation-name:FadeIn;
-webkit-animation-timing-function:ease-in;
-webkit-animation-duration:2s;
}

 

This fades works in Google Chrome but not in Firefox, Internet Explorer or Opera (as I expect).

 

How can expand on this code using CSS3 code to support Firefox, Internet Explorer and Opera etc?

Edited by random1
Link to comment
Share on other sites

Update:

 

After more work and research I have the code:

 

@-webkit-keyframes FadeIn
{
   0%
   {
    opacity:0;
   }
   100%
  {
    opacity:1;
   }
}
@-webkit-keyframes FadeOut
{
   0%
   {
    opacity:1;
   }
   100%
  {
    opacity:0;
   }
}
@-moz-keyframes FadeIn
{
 from { opacity:0; } to { opacity:1; }
}
@-moz-keyframes FadeOut
{
 from { opacity:1; } to { opacity:0; }
}
@-o-keyframes FadeIn
{
 from { opacity:0; } to { opacity:1; }
}
@-o-keyframes FadeOut
{
 from { opacity:1; } to { opacity:0; }
}
@keyframes FadeIn
{
 from { opacity:0; } to { opacity:1; }
}
@keyframes FadeOut
{
 from { opacity:1; } to { opacity:0; }
}
#example
{
-webkit-animation:FadeIn ease-in 0.5s;
-moz-animation:FadeIn ease-in 0.5s;
-o-animation:FadeIn ease-in 0.5s;
animation:FadeIn ease-in 0.5s;
-webkit-animation-fill-mode:forwards;
-moz-animation-fill-mode:forwards;
-o-animation-fill-mode:forwards;
animation-fill-mode:forwards;
}

 

and its working all but Internet Explorer. Any advice?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.