IOS UIView 動畫 圓角的拓展

2021-07-14 06:39:55 字數 2561 閱讀 2639

**:

首先這個列舉屬於uiviewanimation。我們經常使用的函式是[uiview animatewithduration: animations:^{} completion:^(bool finished) {}];和[uiview animatewithduration: animations:^{}];如果動畫稍微複雜點,例如需要組合等等就可能用到這個函式:[uiview animatewithduration: delay: options: animations: completion:^(bool finished) {}];剛開始接觸的朋友看到一堆列舉可能就覺得煩,尤其是蘋果那混亂的動畫框架東一坨,西一坨。又是quartz2d,又是核心動畫跟臭襪子一樣……沒關係,撿回來接著穿。

以上方法中的options一項需要傳入乙個列舉,這個列舉大概控制的是這幾個要素:當前動畫巢狀中的動畫執行隨時間的快慢種類(先快後慢等..)。動畫要一直重複嗎。如果我使用轉場動畫那麼我用哪種轉場效果。還有子動畫巢狀在父動畫中時我們如何對待父動畫中的相同選項等等..

正文:uiviewanimationoptionlayoutsubviews //提交動畫的時候布局子控制項,表示子控制項將和父控制項一同動畫。

uiviewanimationoptionallowuserinteraction //動畫時允許使用者交流,比如觸控

uiviewanimationoptionbeginfromcurrentstate //從當前狀態開始動畫

uiviewanimationoptionrepeat //動畫無限重複

uiviewanimationoptionautoreverse //執行動畫迴路,前提是設定動畫無限重複

uiviewanimationoptionoverrideinheritedduration //忽略外層動畫巢狀的執行時間

uiviewanimationoptionoverrideinheritedcurve //忽略外層動畫巢狀的時間變化曲線

uiviewanimationoptionallowanimatedcontent //通過改變屬性和重繪實現動畫效果,如果key沒有提交動畫將使用快照

uiviewanimationoptionshowhidetransitionviews //用顯隱的方式替代新增移除圖層的動畫效果

uiviewanimationoptionoverrideinheritedoptions //忽略巢狀繼承的選項

//時間函式曲線相關

uiviewanimationoptioncurveeaseinout //時間曲線函式,由慢到快

uiviewanimationoptioncurveeasein //時間曲線函式,由慢到特別快

uiviewanimationoptioncurveeaseout //時間曲線函式,由快到慢

uiviewanimationoptioncurvelinear //時間曲線函式,勻速

//轉場動畫相關的

uiviewanimationoptiontransitionnone //無轉場動畫

uiviewanimationoptiontransitionflipfromleft //轉場從左翻轉

uiviewanimationoptiontransitionflipfromright //轉場從右翻轉

uiviewanimationoptiontransitioncurlup //上捲轉場

uiviewanimationoptiontransitioncurldown //下卷轉場

uiviewanimationoptiontransitioncrossdissolve //轉場交叉消失

uiviewanimationoptiontransitionflipfromtop //轉場從上翻轉

uiviewanimationoptiontransitionflipfrombottom //轉場從下翻轉

以上是淺略的理解,歡迎朋友有更好的指正,以免誤人子弟。

補充:關於最後一組轉場動畫它一般是用在這個方法中的:

[uiview transitionfromview: toview: duration: options: completion:^(bool finished) {}];

該方法效果是插入一面檢視移除一面檢視,期間可以使用一些轉場動畫效果。

CSS3 transition動畫 圓角 rgba

1 transition property 設定過渡的屬性,比如 width height background color 2 transition duration 設定過渡的時間,比如 1s 500ms 3 transition timing function 設定過渡的運動方式,常用有 li...

C 畫圓角矩形

protected void page load object sender,eventargs e public static void drawroundrectangle graphics g,pen pen,rectangle rect,int cornerradius public sta...

ios UIView常用動畫效果

一 呼叫 1 2 3 4 5 6 if m viewscenario.superview nil 展示,由小變大 1 2 3 4 5 6 7 8 9 10 11 12 13 void zoomin uiview view andanimationduration float duration and...