Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/12/2013, 07:44
Avatar de pzin
pzin
Moderata 😈
 
Fecha de Ingreso: julio-2002
Ubicación: Islas Canarias
Mensajes: 10.488
Antigüedad: 21 años, 9 meses
Puntos: 2114
Respuesta: Por favor Leanme todos

Qué

{
Código HTML:
Ver original
  1. <div id="cosa"></div>

Código CSS:
Ver original
  1. #cosa {
  2.   position: relative;
  3.   top: 50px;
  4.   left: 50px;
  5.   width: 100px;
  6.   height: 90px;
  7.   animation: vive 2s linear infinite;
  8. }
  9.  
  10. #cosa:before, #cosa:after {
  11.   position: absolute;
  12.   content: "";
  13.   left: 50px;
  14.   top: 0;
  15.   width: 50px;
  16.   height: 80px;
  17.   background: firebrick;
  18.   border-radius: 50px 50px 0 0;
  19.   transform: rotate(-45deg);
  20.   transform-origin: 0 100%;
  21. }
  22.  
  23. #cosa:after {
  24.   left: 0;
  25.   transform: rotate(45deg);
  26.   transform-origin: 100% 100%;
  27. }
  28.  
  29. @keyframes vive {
  30.   from, 10%, 20%, 30%, to {
  31.     transform: scale(1, 1);
  32.   }
  33.   15%, 25% {
  34.     transform: scale(1.4, 1.4);
  35.   }
  36. }
}

nos vuelven estas fechas.

http://codepen.io/pzin/pen/gozfJ