YSCAnimation
Github地址 : https://github.com/xiaochaofeiyu/YSCAnimation
对你有帮助的话帮我点颗星星哦!
ripple animation
1). singlelineripple --> corresponding class YSCRippleView
1 |
[_rippleView showWithRippleType:YSCRippleTypeLine] |
2). ringRipple --> corresponding class YSCRippleView
1 |
[_rippleView showWithRippleType:YSCRippleTypeRing] |
3). cicleRipple --> corresponding class YSCRippleView
1 |
[_rippleView showWithRippleType:YSCRippleTypeCircle] |
4). mixedripple --> corresponding class YSCRippleView
1 |
[_rippleView showWithRippleType:YSCRippleTypeMixed] |
wave animation
1). pusle --> corresponding class YSCWaveView
1 |
[_waveView showWaveViewWithType:YSCWaveTypePulse] |
1 |
[_waveView showWaveViewWithType:YSCWaveTypeVoice] |
3). movedWave --> corresponding class YSCWaveView
1 |
[_waveView showWaveViewWithType:YSCWaveTypeMovedVoice] |
mask animation
1). circleLoad --> corresponding class YSCCircleLoadAnimationView
1 2 3 4 5 |
YSCCircleLoadAnimationView *shapeView = [[YSCCircleLoadAnimationView alloc] initWithFrame:self.view.bounds]; UIImage *image = [UIImage imageNamed:@"tree.jpg"]; shapeView.loadingImage.image = image; [self.view addSubview:shapeView]; [shapeView startLoading]; |
2). microphone wave --> corresponding class YSCMicrophoneWaveView
1 2 |
YSCMicrophoneWaveView *microphoneWaveView = [[YSCMicrophoneWaveView alloc] init]; [microphoneWaveView showMicrophoneWaveInParentView:self.view withFrame:self.view.bounds]; |
3). fanshaped wave --> corresponding class YSCFanShapedView