Entradas

Mostrando las entradas de noviembre, 2012

Animaciones

Imagen
Varios Efectos Con Transición Gira jwebmx.blogspot.mx Se Extiende Mi Blog  - - >    jwebmx.blogspot.mx Se Agranda jwebmx.blogspot.mx Se Deforma jwebmx.blogspot.mx Se Mueve jwebmx.blogspot.mx codigo de la hoja de estilo /* Codigo para hacer girar el link */ #gira{ width:150px; height:25px; transition:2s; -moz-transition:2s; /* Para Firefox */ -webkit-transition:2s; /* Para Chrome */ -o-transition:2s; /* Para Opera */ } #gira:hover{ transform:rotate(360deg); -moz-transform:rotate(360deg); /* Para Firefox */ -webkit-transform:rotate(360deg); /* Para Chrome */ -o-transform:rotate(360deg); /* Para Opera */ } /* Codigo para mostrar el link */ #extiende{ width:55px; height:25px; transition:2.5s; -moz-transition:2.5s; /* Para Firefox */ -webkit-transition:2.5s; /* Para Chrome */ -o-transition:2.5s; /* Para Opera */ overflow:hidden; /* Se oculta el texto que sobre saldria de la seccion */ } #extiende:hover{ width: 250px; } /* C