透明,旋轉,移動,縮放

2021-08-17 10:35:05 字數 953 閱讀 5818

透明

//在2s內,將imageview的透明度從1變成0然後再變成1。

objectanimator animator = objectanimator.offloat(mimg

, "alpha"

, 1f

, 0f

,1f);

animator.setduration(2000);

//時間1s

animator.start();

旋轉

//在2s內,順時針旋轉360度,然後再逆時針旋轉360度。

objectanimator animator2 = objectanimator.offloat(mimg

, "rotation"

, 0f

, 360f

, 0f);

animator2.setduration(2000);

animator2.start();

移動

//在2s內,沿x軸左移300個畫素,然後再右移300個畫素

objectanimator animator3 = objectanimator.offloat(mimg

, "translationx"

, 0f

, -300f

, 0f);

animator3.setduration(2000);

animator3.start();

縮放

//在2s內,沿x軸放大成原來的兩倍,然後縮小回原樣。

objectanimator animator4 = objectanimator.offloat(mimg

, "scalex"

, 1f

, 2f

, 1f);

animator4.setduration(2000);

animator4.start();

Blender 1 移動 旋轉 縮放

首先,選中物體。按下g,grab,移動。1.1.1 按xyz軸移動 按下g之後,再按x,物體按x軸移動。同理 按y後移動滑鼠沿y軸移動 按z後移動滑鼠沿z軸移動。還有乙個快捷方式,按g之後,按滑鼠中間,直接可以在xyz軸移動,方便。1.1.2 在平面移動 按下g之後,再按shift x,鎖定x軸,物...

Android 縮放 移動 旋轉View相關方法

android rotation 關聯方法 setrotation float 屬性說明 旋轉度數 android rotationx 關聯方法 setrotationx float 屬性說明 水平旋轉度數 android rotationy 關聯方法 setrotationy float 屬性說明...

OSG開發之模型移動 旋轉 縮放

對模型最常用的操作莫過於移動了,有很多人不知道如何操作來移動乙個模型。現在我們要明確乙個事例,也就是說osg把加入的模型預設都放在中點了,這非常的不好受。其實有些時候並不建議在場景中移動模型,替代的是模型在未加入場景之前位置就是完好的。移動 旋轉 縮放其實都是對矩陣進行操作,在osg當中,矩陣可以當...