Jump to content

How is this intro made?


tooth-paste
 Share

Recommended Posts

Can I just say that even though it looks cool, it is almost as bad as a 90's splashscreen to me - please don't help to perpetuate the return of that evil!

PS - I wouldn't mind it so much if it went straight to the slideshow - but the delay on his name when I can't do anything is my biggest beef with it.

  • Like 1
Link to comment
Share on other sites

And css animations. I simplified their code to demonstrate:

div {
  animation-name: enter_animation;
  animation-duration: 6s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  opacity: 0;
}
#first {
  animation-delay: 0;
}
#second {
  animation-delay: 4s;
}
#third {
  animation-delay: 8s;
}

@keyframes enter_animation {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

http://codepen.io/diogo-ed/pen/pywjxN

Edited by diogo
small changes on the code
  • Like 1
Link to comment
Share on other sites

And css animations. I simplified their code to demonstrate:

div {
  animation-name: enter_animation;
  animation-duration: 6s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
}
#first {
  animation-delay: 0;
}
#second {
  animation-delay: 6s;
}
#third {
  animation-delay: 12s;
}

@keyframes enter_animation {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

http://codepen.io/diogo-ed/pen/pywjxN

Thank you diogo! And also done with such a small peach of code.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...