Ver Mensaje Individual
  #10 (permalink)  
Antiguo 11/11/2012, 08:11
Avatar de pzin
pzin
Moderata 😈
 
Fecha de Ingreso: julio-2002
Ubicación: Islas Canarias
Mensajes: 10.489
Antigüedad: 22 años, 3 meses
Puntos: 2114
Respuesta: Duda sobre HSL transition (arcoiris).

Si la verdad no parece tan suave el movimiento como con hsl().

Código CSS:
Ver original
  1. div {
  2.     width: 200px;
  3.     height: 200px;
  4.     background: yellow;
  5.     -webkit-transition: -webkit-filter 10s;
  6. }
  7.  
  8. div:hover {
  9.     -webkit-filter: hue-rotate(360deg);
  10. }