4 <meta name=
"viewport" content=
"user-scalable=no, width=device-width">
5 <title> Async scroll test
</title>
7 window
.onload = function() {
8 var fake
= document
.getElementById('fake-scroll');
10 var updateLocation = function() {
11 var scrollTop
= document
.body
.scrollTop
|| document
.documentElement
.scrollTop
;
12 fake
.style
.webkitTransform
= 'translate3d(0, ' + (-scrollTop
) + 'px, 0)';
13 fake
.style
.transform
= 'translate3d(0, ' + (-scrollTop
) + 'px, 0)';
15 document
.addEventListener('scroll', updateLocation
);
37 background-color:green;
47 <div id=
"real-scroll"></div>
48 <div id=
"fake-scroll"></div>