我附上了一个简单的测试用例,它在 iOS6 中重现了这个错误,并且在 iOS5.1 上运行得非常好(在 iPhone 4 和 4S 上)。iOS Chrome 应用程序是运行此测试的好地方,因为它嵌入了 UIWebView。我有一个视频,一旦它上传两个 iPhone 4(运行 iOS 5.1,另一个运行 iOS 6)在 PhoneGap 2.0 UIWebView 中运行此示例脚本,我将附上该视频。
现在,这些元素似乎正在被硬件加速,但苹果的低级管道中存在一个会降低性能的错误。我们已经尝试了许多硬件加速的变通方法,而且似乎任何在 iOS5.1 上调用 GPU 的东西都会导致 iOS6 上的大幅减速。
我很想找到一个修复程序,因为我们正在构建的应用程序在很大程度上依赖于它的正常工作。如果有人可以指出此示例中的错误,那也将不胜感激。
编辑:即使您如下修改 animate 函数,该错误仍然存在。
function animate(node) {
node.style.webkitAnimation = 'sample 5s infinite';
node.style.webkitPerspective = 1000;
node.style.webkitBackfaceVisibility = 'hidden';
}
这似乎强化了调用 GPU 会导致这种减速。
编辑 2:在http://bvgam.es/apple/上托管了一个附加示例,它在 iOS 5.1 上运行顺畅,在 iOS 6 上获得 1-2 FPS。
<!DOCTYPE html>
<html>
<head>
<title>Animation Playground</title>
<style>
@-webkit-keyframes sample {
0% { -webkit-transform: translate3d(0px, 0px, 0px); opacity: 1; }
10% { -webkit-transform: translate3d(0px, 0px, 0px); opacity: 0; }
20% { -webkit-transform: translate3d(10px, 0px, 0px); opacity: 1; }
40% { -webkit-transform: translate3d(10px, 10px, 0px); opacity: 0; }
50% { -webkit-transform: translate3d(10px, 20px, 0px); opacity: 1; }
80% { -webkit-transform: translate3d(20px, 20px, 0px); opacity: 0; }
100% { -webkit-transform: translate3d(0px, 0px, 0px); opacity: 1; }
}
</style>
<script type="text/javascript">
function fib(node, a, b) {
node.innerHTML = a;
setTimeout(function() {
fib(node, a + b, b);
}, 0);
}
function animate(node) {
node.style.webkitAnimation = 'sample 5s infinite';
}
function createNode(row, column) {
var node = document.createElement('div');
node.style.width = '7px';
node.style.height = '7px';
node.style.position = 'absolute';
node.style.top = 30 + (row * 9) + 'px';
node.style.left = (column * 9) + 'px';
node.style.background = 'green';
return node;
}
function run() {
for (var row = 0; row < 20; ++row) {
for (var column = 0; column < 20; ++column) {
var node = createNode(row, column);
document.body.appendChild(node);
animate(node);
}
}
var output = document.getElementById('output');
fib(output, 0, 1);
}
</script>
</head>
<body onload="run()">
<div id="output" style="font-size: 40px; position: absolute; left: 220px;"></div>
</body>
</html>