Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

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)