«
»

2012, css3

Texto animado con CSS3

09.16.12 | Comment?

Alberto Suárez Pérez

Título contenido A
@charset "utf-8";
/* CSS Document */
/*/////////////Fotograma Clave////*/
@-webkit-keyframes texto {
   0% { opacity: 0;  }
    50% { opacity: 0.50;  }
   100% { opacity: 0;  }
  
	}

#texto_rotativo {
   -webkit-animation-name: texto;
   -webkit-animation-duration: 6s;
   -webkit-animation-iteration-count: infinite;
   width: 100px;
   position: relative; 
   padding: 2px;
}



Comments are closed.


«
»