//

//  ViewController.m

//  DMHeartFlyAnimation

//

//  Created by Rick on 16/3/9.

//  Copyright © 2016年 Rick. All rights reserved.

//

#import "ViewController.h"

#import "DMHeartFlyView.h"

@interface ViewController ()

{

CGFloat _heartSize;

NSTimer *_burstTimer;

}

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

_heartSize = 36;

self.view.backgroundColor = [UIColor lightGrayColor];

self.view.userInteractionEnabled = YES;

UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(showTheLove)];

[self.view addGestureRecognizer:tapGesture];

UILongPressGestureRecognizer *longPressGesture = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPressGesture:)];

longPressGesture.minimumPressDuration = 0.2;

[self.view addGestureRecognizer:longPressGesture];

}

//点击

-(void)showTheLove{

DMHeartFlyView* heart = [[DMHeartFlyView alloc]initWithFrame:CGRectMake(0, 0, _heartSize, _heartSize)];

[self.view addSubview:heart];

CGPoint fountainSource = CGPointMake(20 + _heartSize/2.0, self.view.bounds.size.height - _heartSize/2.0 - 10);

heart.center = fountainSource;//创建的地方

[heart animateInView:self.view];

}

//长按

-(void)longPressGesture:(UILongPressGestureRecognizer *)longPressGesture{

switch (longPressGesture.state) {

case UIGestureRecognizerStateBegan:

_burstTimer = [NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(showTheLove) userInfo:nil repeats:YES];

break;

case UIGestureRecognizerStateEnded:

[_burstTimer invalidate];

_burstTimer = nil;

break;

default:

break;

}

}

@end

////////////////////////////////////////////////////////////////////////////////////////////////////////////////

//

//  DMHeartFlyView.h

//  DMHeartFlyAnimation

//

//  Created by Rick on 16/3/9.

//  Copyright © 2016年 Rick. All rights reserved.

//

#import <Foundation/Foundation.h>

#import <UIKit/UIKit.h>

@interface DMHeartFlyView : UIView

-(void)animateInView:(UIView *)view;

@end

//

//  DMHeartFlyView.m

//  DMHeartFlyAnimation

//

//  Created by Rick on 16/3/9.

//  Copyright © 2016年 Rick. All rights reserved.

//

#define DMRGBColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1]

#define DMRGBAColor(r, g, b ,a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:a]

#define DMRandColor DMRGBColor(arc4random_uniform(255), arc4random_uniform(255), arc4random_uniform(255))

#import "DMHeartFlyView.h"

//@interface DMHeartTheme ()

//

//@end

//

//@implementation DMHeartTheme

//

//@end

@interface DMHeartFlyView ()

@property(nonatomic,strong) UIColor *strokeColor;

@property(nonatomic,strong) UIColor *fillColor;

@end

@implementation DMHeartFlyView

-(instancetype)initWithFrame:(CGRect)frame{

self = [super initWithFrame:frame];

if (self) {

_strokeColor = [UIColor whiteColor];

_fillColor = DMRandColor;

self.backgroundColor = [UIColor clearColor];

self.layer.anchorPoint = CGPointMake(0.5, 1);

}

return self;

}

static CGFloat PI = M_PI;

-(void)animateInView:(UIView *)view{

NSTimeInterval totalAnimationDuration = 6;

CGFloat heartSize = CGRectGetWidth(self.bounds);

CGFloat heartCenterX = self.center.x;

CGFloat viewHeight = CGRectGetHeight(view.bounds);

//Pre-Animation setup

self.transform = CGAffineTransformMakeScale(0, 0);

self.alpha = 0;

//Bloom弹簧效果

[UIView animateWithDuration:0.5 delay:0.0 usingSpringWithDamping:0.6 initialSpringVelocity:0.8 options:UIViewAnimationOptionCurveEaseOut animations:^{

self.transform = CGAffineTransformIdentity;

self.alpha = 0.9;

} completion:NULL];

NSInteger i = arc4random_uniform(2);

NSInteger rotationDirection = 1- (2*i);// -1 OR 1

NSInteger rotationFraction = arc4random_uniform(10);

[UIView animateWithDuration:totalAnimationDuration animations:^{

self.transform = CGAffineTransformMakeRotation(rotationDirection * PI/(16 + rotationFraction*0.2));

} completion:NULL];

//上升路径

UIBezierPath *heartTravelPath = [UIBezierPath bezierPath];

[heartTravelPath moveToPoint:self.center];

//random end point

CGPoint endPoint = CGPointMake(heartCenterX + (rotationDirection) * arc4random_uniform(2*heartSize), viewHeight/6.0 + arc4random_uniform(viewHeight/4.0));

//random Control Points

NSInteger j = arc4random_uniform(2);

NSInteger travelDirection = 1- (2*j);// -1 OR 1

//randomize x and y for control points

CGFloat xDelta = (heartSize/2.0 + arc4random_uniform(2*heartSize)) * travelDirection;

CGFloat yDelta = MAX(endPoint.y ,MAX(arc4random_uniform(8*heartSize), heartSize));

CGPoint controlPoint1 = CGPointMake(heartCenterX + xDelta, viewHeight - yDelta);

CGPoint controlPoint2 = CGPointMake(heartCenterX - 2*xDelta, yDelta);

//上升的曲线

[heartTravelPath addCurveToPoint:endPoint controlPoint1:controlPoint1 controlPoint2:controlPoint2];

CAKeyframeAnimation *keyFrameAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];

keyFrameAnimation.path = heartTravelPath.CGPath;

keyFrameAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];

keyFrameAnimation.duration = totalAnimationDuration + endPoint.y/viewHeight;

[self.layer addAnimation:keyFrameAnimation forKey:@"positionOnPath"];

//Alpha & remove from superview

[UIView animateWithDuration:totalAnimationDuration animations:^{

self.alpha = 0.0;

} completion:^(BOOL finished) {

[self removeFromSuperview];

}];

}

-(void)drawRect:(CGRect)rect{

//    UIImage *heartImage = [UIImage imageNamed:@"heart"];

//    UIImage *heartImageBorder = [UIImage imageNamed:@"heartBorder"];

//

//    //Draw background image (mimics border)

//    UIGraphicsBeginImageContextWithOptions(heartImageBorder.size, NO, 0.0f);

//    [_strokeColor setFill];

//    CGRect bounds = CGRectMake(0, 0, heartImageBorder.size.width, heartImageBorder.size.height);

//    UIRectFill(bounds);

//    [heartImageBorder drawInRect:rect blendMode:kCGBlendModeNormal alpha:1.0];

//    heartImageBorder = UIGraphicsGetImageFromCurrentImageContext();

//    UIGraphicsEndImageContext();

//

//    //Draw foreground heart image

//    UIGraphicsBeginImageContextWithOptions(heartImage.size, NO, 0.0f);

//    [_fillColor setFill];

//    CGRect bounds1 = CGRectMake(0, 0, heartImage.size.width, heartImage.size.height);

//    UIRectFill(bounds1);

//    [heartImage drawInRect:rect blendMode:kCGBlendModeNormal alpha:1.0];

//    heartImage = UIGraphicsGetImageFromCurrentImageContext();

//    UIGraphicsEndImageContext();

[self drawHeartInRect:rect];

}

//画心

-(void)drawHeartInRect:(CGRect)rect{

[_strokeColor setStroke];

[_fillColor setFill];

CGFloat drawingPadding = 4.0;

CGFloat curveRadius = floor((CGRectGetWidth(rect) - 2*drawingPadding) / 4.0);

//Creat path

UIBezierPath *heartPath = [UIBezierPath bezierPath];

//1.Start at bottom heart tip// floor()向下取整

CGPoint tipLocation = CGPointMake(floor(CGRectGetWidth(rect) / 2.0), CGRectGetHeight(rect) - drawingPadding);

[heartPath moveToPoint:tipLocation];//起点

//2.Move to top left start of curve

CGPoint topLeftCurveStart = CGPointMake(drawingPadding, floor(CGRectGetHeight(rect) / 2.4));

[heartPath addQuadCurveToPoint:topLeftCurveStart controlPoint:CGPointMake(topLeftCurveStart.x, topLeftCurveStart.y + curveRadius)];////画二元曲线,一般和moveToPoint配合使用

//3.Create top left curve

[heartPath addArcWithCenter:CGPointMake(topLeftCurveStart.x + curveRadius, topLeftCurveStart.y) radius:curveRadius startAngle:PI endAngle:0 clockwise:YES];

//4.Create top right curve

CGPoint topRightCurveStart = CGPointMake(topLeftCurveStart.x + 2*curveRadius, topLeftCurveStart.y);

[heartPath addArcWithCenter:CGPointMake(topRightCurveStart.x + curveRadius, topRightCurveStart.y) radius:curveRadius startAngle:PI endAngle:0 clockwise:YES];

//5.Final curve to bottom heart tip

CGPoint topRightCurveEnd = CGPointMake(topLeftCurveStart.x + 4*curveRadius, topRightCurveStart.y);

[heartPath addQuadCurveToPoint:tipLocation controlPoint:CGPointMake(topRightCurveEnd.x, topRightCurveEnd.y + curveRadius)];

[heartPath fill];

heartPath.lineWidth = 1;

heartPath.lineCapStyle = kCGLineCapRound;

heartPath.lineJoinStyle = kCGLineCapRound;

[heartPath stroke];

}

@end

直播点赞,上升的动画-- CAKeyFrameAnimation的更多相关文章

  1. iOS:核心动画之关键帧动画CAKeyframeAnimation

    CAKeyframeAnimation——关键帧动画 关键帧动画,也是CAPropertyAnimation的子类,与CABasicAnimation的区别是: –CABasicAnimation只能 ...

  2. 放yy直播点赞动画

    最近在做直播相关的东西,这个动画是IOS先撸出来的,后来android这边要模仿,大部分直播应用都有很炫酷的点赞动画,所以也没什么好稀奇的.如果有现成的轮子了,就没必要自己再造了,后来参照了程序亦非猿 ...

  3. iOS直播点赞动画,iOS直播心型点赞动画

    https://github.com/songxing10000/LikeAnimation-PraiseAnimation

  4. 核心动画 - CAKeyframeAnimation 简单应用

    核心动画: 登录按钮的抖动效果: CAKeyframeAnimation * kfAnimation = [CAKeyframeAnimation animationWithKeyPath:@&quo ...

  5. 从QQ音乐开发,探讨如何利用腾讯云SDK在直播中加入视频动画

    欢迎大家前往腾讯云+社区,获取更多腾讯海量技术实践干货哦~ 本文由腾讯游戏云发表于云+社区专栏 看着精彩的德甲赛事,突然裁判一声口哨,球赛断掉了,屏幕开始自动播放"吃麦趣鸡盒,看德甲比赛&q ...

  6. iOS动画:CAKeyframeAnimation

    网络中Core Animation类的继承关系图       属性简介 @interface CAKeyframeAnimation : CAPropertyAnimation /* 提供关键帧数据的 ...

  7. Android 开发技术周报 Issue#273

    新闻/News Android 11有新玩法:双击手机背部截屏/进入多任务界面 Android 11 DP2证实了类似AirDrop的附近文件分享功能 谷歌发布Camera Go:即使入门机也能有出色 ...

  8. 核心动画(CAKeyframeAnimation)

    Main.storyboard ViewController.m // //  ViewController.m //  8A02.核心动画 - CAKeyframeAnimation // //  ...

  9. 核心动画(CAKeyframeAnimation,CABasicAnimation)

    一,核心动画常用的三种例子 view的核心动画其体现就是把view按照指定好的路径进行运动,针对的是view的整体. [view.layer addAnimation:动画路径 forKey:@“绑定 ...

随机推荐

  1. [Apache]架设Apache服务器

    我自己使用的是Ubuntu的操作系统, 所以我主要是记录的在ubuntu的Apache的安装和简单的配置. Apache服务器的架设: 一.命令行安装 使用下面的指令下载apache2 sudo ap ...

  2. python 函数相关定义

    1.为什么要使用函数? 减少代码的冗余 2.函数先定义后使用(相当于变量一样先定义后使用) 3.函数的分类: 内置函数:python解释器自带的,直接拿来用就行了 自定义函数:根据自己的需求自己定义的 ...

  3. 类型:Java;问题:eclipse配置maven;结果:eclipse配置maven

    eclipse配置maven 下面跟大家分享的是eclipse配置maven的方法. 方法/步骤 安装maven之前,要先安装jdk及配置JAVA_HOME环境变量.JDK1.4以上. 下载maven ...

  4. C语言学习笔记--内存分区

    1. 程序中的栈 1.1 栈的简介 (1)栈中现代计算机程序里最为重要的概念之一 (2)栈在程序中用于维护函数调用上下文 (3)函数中的参数和局部变量存储在栈上 (4)栈保存了一个函数调用所需的维护信 ...

  5. [poj3159]Candies(差分约束+链式前向星dijkstra模板)

    题意:n个人,m个信息,每行的信息是3个数字,A,B,C,表示B比A多出来的糖果不超过C个,问你,n号人最多比1号人多几个糖果 解题关键:差分约束系统转化为最短路,B-A>=C,建有向边即可,与 ...

  6. maven安装第三方jar包到本地仓库

    添加项目依赖的时候,有些jar下载不下来,只有手动下载或安装到本地仓库了 首先下载所需要的jar,放到指定的文件夹 然后执行如下命令: mvn install:install-file -Dfile= ...

  7. mac 彻底卸载Paragon NTFS

    之前安装了paragon NTFS,试用期过了就卸载了,但是每天还是会提示“试用期已到期”,看着很烦. 百度了一下,发现网上的版本可能比较老了,和我的情况不太一样,但道理应该是一样的. 彻底删除方法: ...

  8. Opengl创建几何实体——四棱锥和立方体

    //#include <gl\glut.h>#include <GL\glut.h>#include <iostream> using namespace std; ...

  9. nginx负载均衡, 配置地址带端口

    nginx.conf  配置如下: upstream wlcf.dev.api { server 127.0.0.1:8833; server 127.0.0.2:8833; } server { l ...

  10. Linux,du、df统计的硬盘使用情况不一致问题

    [转]http://blog.linezing.com/?p=2136 Linux,du.df统计的硬盘使用情况不一致问题   在运维Linux服务器时,会碰到需要查看硬盘空间的情况,这时候,通常会使 ...