【发布时间】:2014-02-01 14:42:33
【问题描述】:
此转换适用于 Chrome 和 IE11,但不适用于 Firefox v26 Win7。
MDN specification says it's still in a working draft.
CSS-TRICKS 说它是可动画的,没有任何关于不能在 Firefox 中工作的说明。
This js fiddle demonstrates the behavior.
有什么想法吗?
.trans {
-moz-transition: all 1s;
transition: all 1s
}
.spaced {
letter-spacing: 10px
}
$("#btn").on('click', function() {
$("h1").toggleClass("spaced");
});
<h1 class="trans">Animate my letter spacing</h1>
<input type="button" value="animate" id="btn">
【问题讨论】:
标签: css firefox transition