如何在钛中转换/改变图像的视角以提供3D效果

时间:2014-12-07 03:49:21

标签: ios titanium appcelerator appcelerator-mobile

我正在尝试在Titanium中为图像创建3D效果。

请您提供有关如何制作看起来像

的图像的指示

enter image description here

看起来像

enter image description here

我查看了transform,create2dmatrix等 - 但文档对我来说不太清楚。

 var image2 = Titanium.UI.createImageView ({
    image: '/giraffe.jpg',
    height: '323',
    width: "270",
    left: "1px",
    });

感谢..

1 个答案:

答案 0 :(得分:0)

确定..在努力理解文档之后,以下实验为我修复了它。

var image2 = Titanium.UI.createImageView ({
image: '/giraffe.jpg',
height: '323',
width: "270",
left: "1px",
});

t.m34 = 1.0/1000;
t = t.rotate (20,0,1,0);
t = t.rotate (20,0,1,0);
img.transform = t ; 

一切正常..