Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imwcl/wclloadingview
iOS动画进阶 - 手摸手教你写 Slack 的 Loading 动画
https://github.com/imwcl/wclloadingview
Last synced: about 1 month ago
JSON representation
iOS动画进阶 - 手摸手教你写 Slack 的 Loading 动画
- Host: GitHub
- URL: https://github.com/imwcl/wclloadingview
- Owner: imwcl
- Created: 2016-09-08T10:00:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T00:52:08.000Z (almost 8 years ago)
- Last Synced: 2023-03-21T00:51:54.071Z (almost 2 years ago)
- Language: Swift
- Homepage:
- Size: 21.5 KB
- Stars: 72
- Watchers: 4
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WCLLoadingView
##简介:
WCLLoadingView,loading动画,供大家学习交流使用,已封装好也可以用到项目里面当loading动画| demo信息 | 详情 |
|:-----------:|:--------------------------|
| DemoName | WCLLoadingView |
| author | [WCL](https://github.com/631106979) |
| authorMail | [email protected] |
| 博客d讲解地址 | http://blog.csdn.net/wang631106979/article/details/52473985 |## 使用:
```swift
//使用默认颜色
WCLLoadingView.init(frame: CGRect.zero)
//根据线条的颜色初始化
let colorArr = [UIColor.init(rgba: "#9DD4E9") , UIColor.init(rgba: "#F5BD58"), UIColor.init(rgba: "#FF317E") , UIColor.init(rgba: "#6FC9B5")]
WCLLoadingView.init(fram: CGRect.zero, colors: colorArr)
```### 属性列表
```swift
//动画的总时间,修改这个来改变动画的速度
var duration:Double = 2
//动画的间隔时间,循环动画的间隔时间
var interval:Double = 1
//动画的状态
private(set) var status:AnimationStatus = .normal
enum AnimationStatus {
//普通状态
case normal
//动画中
case animating
//暂停
case pause
}//MARK: Public Methods
/**
开始动画
*/
func startAnimation()/**
暂停动画
*/
func pauseAnimation()}/**
继续动画
*/
func resumeAnimation()
```