diff --git a/index.html b/index.html index a239147e80c99ca5e9ae07febec4aa2556dc04fd..d7c75a7270b06aa2c59cf15ed8a1d3a1850589c0 100644 --- a/index.html +++ b/index.html @@ -395,7 +395,8 @@ sort.destroy(); items.forEach(function (el){ var dx = el.w/el.force * (rx / -halfWidth); var dy = el.h/el.force * (ry / halfHeight); - el.style['transform'] = 'translate3d('+dx+'px,'+dy+'px,0)'; + el.style['transform'] = + el.style['-webkit-transform'] = 'translate3d('+dx+'px,'+dy+'px,0)'; }); requestAnimationFrame(_loop);