当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Css3 isnot working on ff14

  • 3 件の返信
  • 2 人がこの問題に困っています
  • 17 回表示
  • 最後の返信者: cor-el

more options
#mebu_bar_btn {
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
    -webkit-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
    -moz-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
    -o-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
}

#mebu_bar_btn:hover {
	-webkit-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px);
    -moz-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px);
    -o-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px);
}

This code is not working anymore on ff14, why? why you made worst the ff14?

<pre><nowiki>#mebu_bar_btn { -webkit-transition:All 0.5s ease; -moz-transition:All 0.5s ease; -o-transition:All 0.5s ease; -webkit-transform: rotate(0deg) scale(1) skew(0deg) translate(0px); -moz-transform: rotate(0deg) scale(1) skew(0deg) translate(0px); -o-transform: rotate(0deg) scale(1) skew(0deg) translate(0px); } #mebu_bar_btn:hover { -webkit-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); -moz-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); -o-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); }</nowiki></pre> This code is not working anymore on ff14, why? why you made worst the ff14?

この投稿は cor-el により に変更されました

選ばれた解決策

Firefox 14 removed support for skew() because it was removed from the CSS standard. You need to replace it with skewX() and skewY(). See https://developer.mozilla.org/En/CSS/transform for the syntax.

(Not sure why there was such a rush to remove it before people became accustomed to the replacement, but... that is a question for another day.)

この回答をすべて読む 👍 1

すべての返信 (3)

more options

選ばれた解決策

Firefox 14 removed support for skew() because it was removed from the CSS standard. You need to replace it with skewX() and skewY(). See https://developer.mozilla.org/En/CSS/transform for the syntax.

(Not sure why there was such a rush to remove it before people became accustomed to the replacement, but... that is a question for another day.)

more options

yeah you are right! nice ...

この投稿は strogylos72 により に変更されました

more options

They've decided to undo the removal of skew(). One of the next Firefox 15 betas (b3?) will have support for skew() again.

(please do not comment in bug reports)