css - CSS3 Transition (cubic-bezier) is not working in Firefox -


  transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0; 

it supported according w3schools.

works fine in chrome, ie , opera.

http://jsfiddle.net/fseqt/1/

oddly not including unit of seconds in transition-delay property causes transition not work. change transition rule to:

transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s; 

http://jsfiddle.net/fseqt/7/


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -