-2
Q
動畫按鈕背景圖片
A
回答
0
儘量做到這樣
CALayer *layer = [CALayer layer];
layer.frame = CGRectMake(0, self.view.bounds.size.height, self.view.bounds.size.width, self.view.bounds.size.height);
layer.backgroundColor = [UIColor blueColor].CGColor;
[self.view.layer addSublayer:layer];
CABasicAnimation *animation = [CABasicAnimation animation];
animation.keyPath = @"position.y";
animation.byValue = @(-self.view.bounds.size.height);
animation.duration = 1;
animation.fillMode = kCAFillModeForwards;
animation.removedOnCompletion = NO;
[layer addAnimation:animation forKey:@"Splash"];
相關問題
- 1. 按鈕的動畫背景圖像
- 2. iPhone - 按鈕背景圖片
- 3. wpf按鈕背景圖片
- 4. wxPython按鈕背景圖片
- 5. 動畫背景圖片
- 6. 動畫背景圖片
- 7. Android動畫背景圖片
- 8. jQuery:動畫背景圖片
- 9. 按動按鈕提交按鈕的動畫背景?
- 10. WPF動畫按鈕圖片
- 11. 按鈕,隱藏背景動畫
- 12. 的Android應用動畫按鈕背景
- 13. 超越背景的按鈕圖片
- 14. 單選按鈕背景圖片
- 15. jQuery按鈕來改變背景圖片
- 16. 按鈕點擊更改背景圖片
- 17. 更改後退按鈕背景圖片
- 18. CSS:提交按鈕的背景圖片
- 19. 設置按鈕的背景圖片
- 20. 無法更改按鈕背景圖片
- 21. 按鈕背景圖片在swift 3中
- 22. 按鈕被背景圖片隱藏
- 23. 製作按鈕的背景圖片
- 24. 按鈕角落圓角背景圖片
- 25. 按鈕背景圖片拉伸
- 26. 更改按鈕的背景圖片
- 27. CSS3動畫中的firefox背景圖片
- 28. 動畫的div背景圖片
- 29. 動畫SVG圓圈背景圖片
- 30. 的CSS - 動畫背景圖片 - 帶環
@LeoNatan我想創造這樣的進度條加載動畫,但只能用按鈕背景 –