Skip to content

Latest commit

 

History

History
71 lines (46 loc) · 1.47 KB

README_CN.md

File metadata and controls

71 lines (46 loc) · 1.47 KB

YXWaveView English

Carthage compatible Version License Platform

波浪View,类似百度外卖的头像波浪效果。

截图

ScreenShot

安装

CocoaPod

Podfile 中添加:

platform :ios, '8.0'

pod 'YXWaveView'

运行 pod install 安装

Carthage

github "yourtion/YXWaveView"

使用方法

// 初始化
let frame = CGRect(x: 0, y: 0, width: self.view.bounds.size.width, height: 200)
let waterView = YXWaveView(frame: frame, color: UIColor.white)

// 添加浮动层
waterView.addOverView(overView)

// 开始动画
waterView.start()

// 停止动画
waterView.stop()

参数设置

// 实浪颜色
waterView.realWaveColor = UIColor.blue

// 遮罩浪颜色
waterView.maskWaveColor = UIColor.black

// 波浪速度 (默认: 0.6)
waterView.waveSpeed = 0.5

// 浪高 (默认: 5)
waterView.waveHeight = 6

// 波浪弯曲程度 (默认: 1.5)
waterView.waveCurvature = 1.2

查看 Demo 了解详细使用方法。