动画(四)

作者: 土鳖不土 | 来源:发表于2015-12-29 21:39 被阅读614次

注:动画四主要是用第三方动画库pop完成一个小效果。源码会在下个开源项目中贴出

讲真这个框架真的很牛逼
FaceBook 开源框架地址pop:https://github.com/facebook/pop

先看下开始展示没有自定义动画效果


开始展示的时候,没有动画效果

没有动画的效果吧:
可能太快了 看不出来和下面的对比效果


再看下有自定义动画效果的展示


JF.gif

展示:

/*
 * 创建多个按钮
 */
- (void)setupButtons
{
    // 数据
    NSArray *images = @[@"ch2_xinjianrenwu_bg_new", @"ch2_xinjianricheng_bg_new", @"ch2_qiandaodaka_bg_new", @"ch2_fabudongtai_bg_new", @"ch2_fabutongzhi_bg_new", @"ch2_crm_bg_new"];
    NSArray *titles = @[@"新建任务", @"新建日程", @"签到打卡", @"发布动态", @"发布通知", @"JF"];
    
    // 类似九宫格创建法
    NSUInteger count = images.count;
    int maxColsCount = 3; // 一行的列数
    NSUInteger rowsCount = (count + maxColsCount - 1) / maxColsCount;
    
    // 按钮尺寸
    CGFloat buttonW = JFSCREENWIDTH / maxColsCount;
    CGFloat buttonH = buttonW * 1.2;
    CGFloat buttonStartY = (JFSCREENHEIGHT - rowsCount * buttonH) * 0.5;
    for (int i = 0; i < count; i++) {
        // 创建、添加
        JFAddTaskButton *button = [JFAddTaskButton buttonWithType:UIButtonTypeCustom];
        button.width = -1; // 按钮的尺寸为0,还是能看见文字缩成一个点,设置按钮的尺寸为负数,那么就看不见文字了
        [button addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
        [self.buttons addObject:button];
        [self.view addSubview:button];
        
        // 内容
        [button setImage:[UIImage imageNamed:images[i]] forState:UIControlStateNormal];
        [button setTitle:titles[i] forState:UIControlStateNormal];
        
        // frame
        CGFloat buttonX = (i % maxColsCount) * buttonW;
        CGFloat buttonY = buttonStartY + (i / maxColsCount) * buttonH;
        
        // 初始化一个pop动画对象
        POPSpringAnimation *anim = [POPSpringAnimation animationWithPropertyNamed:kPOPViewFrame];
        // 从哪里来
        anim.fromValue = [NSValue valueWithCGRect:CGRectMake(buttonX, buttonY - JFSCREENHEIGHT, buttonW, buttonH)];
        
        // 到哪里去
        anim.toValue = [NSValue valueWithCGRect:CGRectMake(buttonX, buttonY, buttonW, buttonH)];
        // 动画速率
        anim.springSpeed = JFSpringFactor;
        // 摩擦系数
        anim.springBounciness = JFSpringFactor;
        // CACurrentMediaTime()获得的是当前时间
        anim.beginTime = CACurrentMediaTime() + [self.times[i] doubleValue];
        [button pop_addAnimation:anim forKey:nil];
    }
}

消失:

 // 禁止交互
    self.view.userInteractionEnabled = NO;
    
    // 让按钮执行动画
    for (int i = 0; i < self.buttons.count; i++) {
        JFAddTaskButton *button = self.buttons[i];
        
        POPBasicAnimation *anim = [POPBasicAnimation animationWithPropertyNamed:kPOPLayerPositionY];
        anim.toValue = @(button.layer.position.y + JFSCREENHEIGHT);
        // CACurrentMediaTime()获得的是当前时间
        anim.beginTime = CACurrentMediaTime() + [self.times[i] doubleValue];
        [button.layer pop_addAnimation:anim forKey:nil];
    }
    
    JFWeakSelf;
    // 让标题执行动画
    POPBasicAnimation *anim = [POPBasicAnimation animationWithPropertyNamed:kPOPLayerPositionY];
    anim.toValue = @(self.sloganImageView.layer.position.y + JFSCREENHEIGHT);
    // CACurrentMediaTime()获得的是当前时间
    anim.beginTime = CACurrentMediaTime() + [self.times.lastObject doubleValue];
    [anim setCompletionBlock:^(POPAnimation *anim, BOOL finished) {
        [weakSelf dismissViewControllerAnimated:NO completion:nil];
    }];
    [self.sloganImageView.layer pop_addAnimation:anim forKey:nil];

标题语

- (void)setupSloganView
{
    CGFloat sloganY = JFSCREENHEIGHT * 0.2;
    
    // 添加
    UIImageView *sloganView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"app_slogan"]];
    sloganView.y = sloganY - JFSCREENHEIGHT;
    sloganView.centerX = JFSCREENWIDTH * 0.5;
    [self.view addSubview:sloganView];
    self.sloganImageView = sloganView;
    
    JFWeakSelf;
    // 动画
    POPSpringAnimation *anim = [POPSpringAnimation animationWithPropertyNamed:kPOPLayerPositionY];
    anim.toValue = @(sloganY);
    anim.springSpeed = JFSpringFactor;
    anim.springBounciness = JFSpringFactor;
    // CACurrentMediaTime()获得的是当前时间
    anim.beginTime = CACurrentMediaTime() + [self.times.lastObject doubleValue];
    [anim setCompletionBlock:^(POPAnimation *anim, BOOL finished) {
        // 开始交互
        weakSelf.view.userInteractionEnabled = YES;
    }];
    [sloganView.layer pop_addAnimation:anim forKey:nil];
}

2015-12 - 29 上海

源码在下一个开源项目中贴出来,有不足之处欢迎指出来。我会非常感谢

相关文章

  • Android动画

    动画种类 1、View动画:View动画支持四种动画效果,分别是旋转、平移、缩放、透明度(只能实现四种动画效果,而...

  • Android动画总结

    动画分为三种:View动画、帧动画和属性动画 View动画 View动画共有四种动画:TranslateAnima...

  • Android中的动画概述

    动画可以分为三类:View动画,帧动画,属性动画。 一、View动画 1.View动画包括四种:平移动画,缩放动画...

  • 动画四

    后面的东西,可能就比较繁琐,因为像前面的做法可以说是比较固定的,算是比较好的一个方法(当然也有别的方法),但是后面...

  • 动画(四)

    注:动画四主要是用第三方动画库pop完成一个小效果。源码会在下个开源项目中贴出 讲真这个框架真的很牛逼FaceBo...

  • Android 几种动画总结

    四种基本动画 透明度渐变动画(AlphaAnimation) 旋转动画(RotateAnimation) 缩放动画...

  • android开发艺术探索第四章心得(Android动画深入分析

    android动画分为View动画和属性动画. view动画 view动画的有四个类型TranslateAnima...

  • Android动画(二)之View动画的特殊使用场景

    一、前言 首先呢,View动画有四种类型,分别是平移动画,缩放动画、旋转动画和透明度动画。除了这四种形式外,Vie...

  • #Android 动画之属性动画(四)#

    Android 动画之属性动画(四)# Specifying Keyframes## 有些时候,我们需要这个动画在...

  • 《Android 开发艺术探索》笔记9--Andriod动画深入

    View动画 View动画作用的对象是View, 它支持四种动画效果平移, 缩放, 旋转, 透明. 除了这四种典型...

网友评论

  • CoderChou:@tubiebutu 这位码兄,你那个gif制作工具是什么,能不能告知在下
    土鳖不土:@为理想而行 picGIF Lite
  • 花轮丨:我傻逼了,第四个已经出来了。。。我感觉pop还可以多讲一些的。
    土鳖不土:@花轮丨 之后会有的。谢谢你的建议。

本文标题:动画(四)

本文链接:https://www.haomeiwen.com/subject/lfkihttx.html