0

Is there any way to make the effect smoother when we entered the container.

The idea is that the list of icons or numbers must be relative to the center then it occurred put it this way, but I can not make softer positions without losing the mousemove is a plugin I found on the web if you have any suggestions would be great;)

http://jsfiddle.net/rvalverde/zw6pJ/11/

Steve Robbins
  • 13,672
  • 12
  • 76
  • 124
Raul Valverde
  • 587
  • 4
  • 11

1 Answers1

0

I added a css3 transition on your li anchors. You can adjust the timing. Depends on legacy browser support as well to use this.

-o-transition: all .4s ease;
-ms-transition: all .4s ease;
-moz-transition: all .4s ease;
-webkit-transition: all .4s ease;
transition: all .4s ease; 

http://jsfiddle.net/zw6pJ/12/

Christopher Marshall
  • 10,678
  • 10
  • 55
  • 94