国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 栾川县| 神农架林区| 常德市| 金塔县| 崇州市| 长葛市| 东至县| 灌南县| 全南县| 庄浪县| 崇州市| 湟中县| 鲁甸县| 阜平县| 贵溪市| 黎川县| 信宜市| 基隆市| 休宁县| 昌邑市| 山阴县| 永济市| 西盟| 昭苏县| 武安市| 台湾省| 财经| 安西县| 新巴尔虎右旗| 石棉县| 辛集市| 句容市| 嘉禾县| 广汉市| 元谋县| 司法| 石渠县| 泉州市| 交口县| 陇川县| 静安区|