国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

橢圓線條繪制動(dòng)畫(huà)

2019-11-09 15:42:57
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

github:https://github.com/potato512/SYAnimation

使用貝賽爾曲線UIBezierPath、陰影對(duì)象CAShapeLayer、基礎(chǔ)類動(dòng)畫(huà)CABasicAnimation實(shí)現(xiàn)。

效果圖如下:

示例代碼:

- (void)lineAnimation{    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(10.0, 340.0, (self.view.frame.size.width - 10.0 * 2), 100.0)];    [self.view addSubview:view];    view.backgroundColor = [UIColor colorWithWhite:0.5 alpha:0.2];    UIBezierPath *bezierPath = [UIBezierPath bezierPathWithOvalInRect:view.bounds];     CAShapeLayer *shapeLayer = [[CAShapeLayer alloc] init];    shapeLayer.strokeColor = [UIColor purpleColor].CGColor;    shapeLayer.fillColor = [UIColor clearColor].CGColor;    shapeLayer.lineWidth = 2;    shapeLayer.lineJoin = kCALineJoinRound;    shapeLayer.lineCap = kCALineCaPRound;    shapeLayer.path = bezierPath.CGPath;    [view.layer addSublayer:shapeLayer];        CABasicAnimation *pathAnim = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];    pathAnim.duration = 5.0;    pathAnim.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaSEOut];    pathAnim.fromValue = @(0);    pathAnim.toValue = @(1);    pathAnim.autoreverses = true;    pathAnim.fillMode = kCAFillModeForwards;    pathAnim.removedOnCompletion = NO;    pathAnim.repeatCount = MAXFLOAT;    [shapeLayer addAnimation:pathAnim forKey:@"strokeEndAnim"];}


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 华安县| 巨鹿县| 东方市| 金川县| 于田县| 马龙县| 井陉县| 宁波市| 新津县| 恩施市| 桃江县| 广水市| 雅江县| 永定县| 福安市| 从江县| 河源市| 元氏县| 杨浦区| 米易县| 高陵县| 深州市| 兴国县| 平南县| 铁力市| 陆良县| 罗定市| 当阳市| 吴川市| 鄄城县| 蓬莱市| 建湖县| 大城县| 衡山县| 龙江县| 东丰县| 合肥市| 泰州市| 灵寿县| 万宁市| 洞头县|