5
transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0;
它支持根據w3schools。CSS3轉換(立方貝塞爾)在Firefox中不工作
適用於Chrome,IE和Opera。
transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0;
它支持根據w3schools。CSS3轉換(立方貝塞爾)在Firefox中不工作
適用於Chrome,IE和Opera。
奇怪不包括在transition-delay
屬性秒單元使過渡到不工作。只要改變你的transition
規則:
transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s;
-moz-transition: all 0.3s cubic-bezier(x1, y1, x2, y2);
https://developer.mozilla.org/en-US/docs/CSS/timing-function
我相信-moz前綴已被棄用。 – Brandon 2013-04-25 13:45:13
'-moz-transition'仍然是一個有效的屬性。您可以查看已棄用的屬性[此處](https://developer.mozilla.org/en-US/docs/CSS/CSS_Reference/Mozilla_Extensions) – 2013-04-25 13:48:20