1症杏、css3中transfrom和transition讽膏、animation的區(qū)別
transfrom描述元素靜態(tài)樣式,而transition和animation能夠?qū)崿F(xiàn)動畫效果杨刨,所以一般transfrom配合后兩者使用映之。
結(jié)論:
1. 如果要靈活定制多個幀以及循環(huán),用animation.
2. 如果要簡單的from to 效果怜奖,用 transition.
3. 如果要使用js靈活設(shè)定動畫屬性浑测,用transition.
2 ? function testFun(x, y) {
? ? ? ?return this.a + this.b + x + y;
}
?var o = { a: 1, b: 2 };
?var A = testFun.call(o, 10, 20);
?var B = testFun.apply(o, [10, 20]);
?console.log(A,B)
?console.log(o);