在网络技术中,
如果我要在我的样式表中添加以下代码行,那么我是否会为这些代码中的所有元素添加大量繁重的工作?前端几乎看不到任何视觉效果?
我想要在调整宽度/高度的大小时动画元素。
p, h1, h2, h3, h4, img, div {
@include transition(all 0.3s);
}
答案 0 :(得分:1)
left
,top
,margin
,padding
等相比,转化/动画会向浏览器添加一些重载导致浏览器每帧重新计算样式。
您应该阅读CSS and JavaScript animation performance和CSS animations and transitions performance
的文章