Search
 
SCRIPT & CODE EXAMPLE
 

CSS

online animation maker css

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes flipInY {
  0% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  opacity: 0;
  }
  40% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  }
  60% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  opacity: 1;
  }
  80% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
  -webkit-transform: perspective(400px);
  transform: perspective(400px);
  }
  }
  @keyframes flipInY {
  0% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  opacity: 0;
  }
  40% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  }
  60% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  opacity: 1;
  }
  80% {
  -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
  -webkit-transform: perspective(400px);
  transform: perspective(400px);
  }
  }
Comment

PREVIOUS NEXT
Code Example
Css :: css hover after 
Css :: download css from website 
Css :: text align in materialize css 
Css :: border animation css codepen 
Css :: counter-style counter css counters 
Css :: css custom underline color 
Css :: set propTypes 
Css :: css animate absolute position 
Css :: center 
Css :: css hide after seconds 
Css :: pading 
Css :: css bootstrap carousel fade how to add fade in up text 
Css :: hover on father elemet activates a child element css 
Css :: css pixel art 
Css :: text in one line css 
Css :: inline css not working table odoo 11 
Css :: css all children of type 
Css :: css packer cli 
Css :: footer for front end developer 
Css :: scss @content 
Css :: css before cant change the size 
Css :: find_element_by_css_selector link 
Css :: pure css spinner 
Css :: button background position left to right hover css 
Css :: how to create a square element with css with dynamic width 
Css :: check browser support for css value 
Css :: animating a text in css 
Css :: how set image at top in wordpress 
Css :: matrix multiplication markdown 
Css :: make font awesome spin but not the word on hover 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =