对于我的一个项目(请参阅BigPictu.re或bigpicture.js GitHub project),我必须处理非常非常大的<div>
容器。
我知道使用我所使用的简单方法可能会导致性能降低,但是我没想到它仅适用于Chrome!
如果测试此小页面(请参见下面的代码),则平移(单击并拖动)将是:
- 在Firefox上正常/流畅
- 即使在Internet Explorer上也正常/流畅
- 在Chrome上非常慢(几乎崩溃)!
当然,我可以在项目中添加一些代码来执行此操作,当您放大很多时,字体可能非常大的文本将被隐藏。但是,为什么Firefox和Internet Explorer正确处理而不是Chrome处理正确?
JavaScript,HTML或CSS中是否有一种方法可以告诉浏览器不要为每个操作呈现整个页面(此处为10000像素宽)?(仅渲染当前视口!)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
html, body {
overflow: hidden;
min-height: 100%; }
#container {
position: absolute;
min-height: 100%;
min-width: 100%; }
.text {
font-family: "Arial";
position: absolute;
}
</style>
</head>
<body>
<div id="container">
<div class="text" style="font-size: 600px; left:100px; top:100px">Small text</div>
<div class="text" style="font-size: 600000px; left:10000px; top:10000px">Very big text</div>
</div>
<script>
var container = document.getElementById('container'), dragging = false, previousmouse;
container.x = 0; container.y = 0;
window.onmousedown = function(e) { dragging = true; previousmouse = {x: e.pageX, y: e.pageY}; }
window.onmouseup = function() { dragging = false; }
window.ondragstart = function(e) { e.preventDefault(); }
window.onmousemove = function(e) {
if (dragging) {
container.x += e.pageX - previousmouse.x; container.y += e.pageY - previousmouse.y;
container.style.left = container.x + 'px'; container.style.top = container.y + 'px';
previousmouse = {x: e.pageX, y: e.pageY};
}
}
</script>
</body>
</html>