|
@@ -58906,13 +58906,13 @@ function initTransitionPass(THREE){
|
|
|
element.style.WebkitTransform = style;
|
|
|
element.style.transform = style;
|
|
|
|
|
|
- if(browser.isMobile() && browser.detectIOS()){
|
|
|
+ /* if(browser.isMobile() && browser.detectIOS()){
|
|
|
var info = menuDiv.objects.find(info=>info.id == element.id);
|
|
|
if(info && info.transform){
|
|
|
$(element).css("transform", info.transform )
|
|
|
$(element).css("WebkitTransform", info.transform )
|
|
|
}
|
|
|
- }
|
|
|
+ } */
|
|
|
|
|
|
var objectData = { style: style };
|
|
|
|
|
@@ -59022,8 +59022,8 @@ function initTransitionPass(THREE){
|
|
|
}
|
|
|
|
|
|
var cameraCSSMatrix = camera.type == "OrthographicCamera" /* camera.isOrthographicCamera */ ?
|
|
|
- 'scale(' + fov + ')' + 'translate(' + epsilon( tx ) + 'px,' + epsilon( ty ) + 'px)' + getCameraCSSMatrix( camera.matrixWorldInverse ) :
|
|
|
- 'translateZ(' + fov + 'px)' + getCameraCSSMatrix( camera.matrixWorldInverse );
|
|
|
+ 'scale(' + fov + ')' + 'translate(' + epsilon( tx ) + 'px,' + epsilon( ty ) + 'px) ' + getCameraCSSMatrix( camera.matrixWorldInverse ) :
|
|
|
+ 'translateZ(' + fov + 'px) ' + getCameraCSSMatrix( camera.matrixWorldInverse );
|
|
|
|
|
|
var style = cameraCSSMatrix +
|
|
|
'translate(' + _widthHalf + 'px,' + _heightHalf + 'px)';
|