Q
創建動畫蒙版圖像
0
A
回答
1
您可以像this answer一樣創建一個形狀圖層,看上去好像它逐漸出現(如製作一個完整的圓圈的時鐘)。然後你可以把另外一層圓形的內容(或使用您的視圖的層),並形狀圖層蒙版:
CAShapeLayer *maskLayer = // see linked answer
yourCircularView.layer.mask = maskLayer;
CABasicAnimation *drawMaskAnimation = // see linked answer
[maskLayer addAnimation:drawMaskAnimation forKey:@"appear gradually"];];
+0
我愛程序員! – user2453876
0
所有UIView都支持CALayer,它允許一些屬性被設置爲動畫以及應用掩碼。你會發現這個頁面的教程非常有幫助。 www.raywenderlich.com
相關問題
- 1. 爲分層圖像創建動畫徑向蒙版?
- 2. 如何從圖像創建蒙版
- 3. 動畫CALayer的蒙版蒙版
- 4. Android蒙版圖像
- 5. WinRT蒙版圖像
- 6. 如何爲alpha蒙版圖像創建位圖上下文?
- 7. 保持屏蔽動畫上的蒙版圖像
- 8. 在圖像視圖中創建動畫
- 9. 創建一個蒙版Div
- 10. 創建具有邊框的居中div圖像的蒙版
- 11. GDI +從圖像中創建一個蒙版
- 12. 爲單個圖像創建多個蒙版
- 13. PHP:如何使用alpha蒙版爲圖像創建陰影
- 14. Luma Key(從圖像創建alpha蒙版)適用於iOS
- 15. 使用二進制圖像創建蒙版-matlab
- 16. 在圖像上創建CSS透明度蒙版
- 17. HTML/CSS - 在圖像上創建alpha蒙版
- 18. 從iOS的圖像的一部分創建蒙版
- 19. css圖像蒙版覆蓋
- 20. 蒙版/裁剪圖像
- 21. jquery蒙版圖像效果
- 22. 多重蒙版圖像
- 23. 反轉SVG圖像蒙版
- 24. 用蒙版動畫UIImageView,但蒙版是靜態的
- 25. 生成Imagick圖像蒙版圖像
- 26. JavaFx - 從圖像數組創建動畫
- 27. 創建動畫以選擇圖像
- 28. 動畫圖像創建雨效
- 29. 爲圖像創建動畫WinPhone
- 30. 使用2張圖像創建動畫
來吧,閱讀[Quartz2D:圖像蒙(https://developer.apple .com/library/ios/documentation/graphicsimaging/conceptual/drawingwithquartz2d/dq_images/dq_images.html#// apple_ref/doc/uid/TP30001066-CH212-TPXREF101) – Till