我目前正在尝试弄清楚,如何在不触发内容重绘的情况下将元素(到任意位置)移动到网页上(从而错过 60fps 的预算)。
我的方法是使用transform: translate(...)
,因为合成将在 GPU 上完成,不需要对内容进行任何重绘。不过,当我更改转换属性时,元素将被重新绘制。
我为这种情况创建了一个示例:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
#moving {
transform: translate(0, 0);
width: 100px;
height: 100px;
background-color: red;
}
</style>
<script src="http://code.jquery.com/jquery-2.0.3.js"></script>
</head>
<body>
<div id="moving"></div>
<script>
setTimeout(function () {
$('#moving').css('transform', 'translate(100px, 100px)');
}, 2000);
</script>
</body>
</html>