美文网首页iOS开发-动画
iOS淘宝购物界面动画解析

iOS淘宝购物界面动画解析

作者: 游某人 | 来源:发表于2016-11-11 17:20 被阅读145次
  • 首先我要说的是点击加入购物车按钮弹出View的动画解析,而不是什么点击商品图片飞来飞去的动画,效果是这样的:
taobao2.gif
  • 乍一看很简单,不就把它放大缩小一下,你要这么做效果那真是惨不能睹,仔细观察手机淘宝这个动画效果,一气呵成,有3D效果,像一张纸一样往下落的感觉。由于产品的需求,一开始毫无头绪,网上的第三方做出效果我很不满意:
disanfang.gif
动画过程给人感觉很突兀,衔接不够流畅,一个动画需要两个阶段完成,这就导致不够顺滑。

该动画效果可以由缩小,旋转,平移,下落动画并发执行得到的结果,可以使用核心动画组来实现并发的动画;

View弹出的动画:背景下落,popview弹出,使用核心动画组实现
x, y轴方向分别缩放,z轴方向下落,根据锚点绕x轴旋转,再加入y轴方向的平移,使其有飘来飘去的感觉。
效果如下:

popView.gif

代码如下:
popView出现的时候:

//该方法是并发,所以不影响核心动画的执行,为什么需要这个方法,因为我们还需要对popview和coverView进行操作,对不需要操作的self.View就可以使用核心动画
[UIView animateWithDuration:0.5 animations:^{
        popView.yqh_y = (MAINHEIGHT - 280);
        coverView.alpha = 0.3;
    }];
    
//注意设置锚点和位置点,因为旋转和缩放都是按照锚点来的
    self.view.layer.anchorPoint = CGPointMake(0.5, 0.8);
    self.view.layer.position = CGPointMake(self.view.yqh_width * .5, self.view.yqh_height * .8);
    CATransform3D tran = CATransform3DIdentity;
//设置近大远小的效果,值越大效果越明显,所以不要太大
    tran.m34 = -1.0/1000;
    self.view.layer.transform = tran;
    
//核心动画也是并发
    CABasicAnimation *scaleAnimateX = [CABasicAnimation animationWithKeyPath:@"transform.scale.x"];
    scaleAnimateX.toValue = @(0.9);
//延迟0.2秒执行
    scaleAnimateX.beginTime = 0.2;
    
    CABasicAnimation *scaleAnimateY = [CABasicAnimation animationWithKeyPath:@"transform.scale.y"];
    scaleAnimateY.toValue = @(0.9);
    scaleAnimateY.beginTime = 0.2;
    
    CABasicAnimation *positonY = [CABasicAnimation animationWithKeyPath:@"transform.translation.y"];
    positonY.toValue = @(-60);
    
    CABasicAnimation *positonZ = [CABasicAnimation animationWithKeyPath:@"transform.translation.z"];
    positonZ.toValue = @(-100);
    
    CAKeyframeAnimation *rotation = [CAKeyframeAnimation animation];
    rotation.keyPath = @"transform.rotation.x";
    rotation.values = @[@(0), @(15 / 180.0 * M_PI), @(0)];
    rotation.repeatCount = 1;
    
    CAAnimationGroup *group = [CAAnimationGroup animation];
    group.animations = @[scaleAnimateX, scaleAnimateY, rotation, positonY, positonZ];
    group.duration = 0.5;
    
//动画结束不恢复原状
    group.removedOnCompletion = NO;
    group.fillMode = kCAFillModeForwards;
    [self.view.layer addAnimation:group forKey:nil];

popView消失的时候:

[UIView animateWithDuration:0.5 animations:^{
//popview消失
        self.popView.yqh_y = MAINHEIGHT;
        self.coverView.alpha = 0;
    }completion:^(BOOL finished) {
        [self.popView removeFromSuperview];
        [self.coverView removeFromSuperview];
//移除动画
        [self.view.layer removeAllAnimations];
//恢复默认的锚点和位置点
        self.view.layer.anchorPoint = CGPointMake(0.5, 0.5);
        self.view.layer.position = CGPointMake(self.view.yqh_width * .5, self.view.yqh_height * .5);
    }];
    
//恢复的动画跟上面的相反
    CATransform3D tran = CATransform3DIdentity;
    tran.m34 = -1.0/1000;
    self.view.layer.transform = tran;
    
    CABasicAnimation *scaleAnimateX = [CABasicAnimation animationWithKeyPath:@"transform.scale.x"];
    scaleAnimateX.toValue = @(1.0);
    
    CABasicAnimation *scaleAnimateY = [CABasicAnimation animationWithKeyPath:@"transform.scale.y"];
    scaleAnimateY.toValue = @(1.0);
    
    CABasicAnimation *positonY = [CABasicAnimation animationWithKeyPath:@"transform.translation.y"];
    positonY.toValue = @(0);
    
    CABasicAnimation *positonZ = [CABasicAnimation animationWithKeyPath:@"transform.translation.z"];
    positonZ.toValue = @(0);
    
    CAKeyframeAnimation *rotation = [CAKeyframeAnimation animation];
    rotation.keyPath = @"transform.rotation.x";
    rotation.values = @[@(0), @(15 / 180.0 * M_PI), @(0)];
    rotation.repeatCount = 1;
    
    CAAnimationGroup *group = [CAAnimationGroup animation];
    group.animations = @[scaleAnimateX, scaleAnimateY, rotation, positonY, positonZ];
    group.duration = 0.5;
    
    group.removedOnCompletion = NO;
    group.fillMode = kCAFillModeForwards;
    [self.view.layer addAnimation:group forKey:nil];

唉,也懒得封装了,大家可以给uiviewcontroller写个分类,到时候就可以用上了。。。

相关文章

  • iOS淘宝购物界面动画解析

    首先我要说的是点击加入购物车按钮弹出View的动画解析,而不是什么点击商品图片飞来飞去的动画,效果是这样的: 乍一...

  • iOS view的层次结构与属性

    ios界面解析 UIScreen UIWindow ios界面由一个树状的UIView层次结构组成 UIView ...

  • CATransform3D

    近期公司UI美女给我看了一个她做的界面,然后当做到一个类似淘宝购物车购买的界面的动画时候,说有些不懂其原理。叫我给...

  • iOS知识点(14)核心动画Core Animation

    动画小王子写的书 iOS动画,绝对够分量! iOS动画篇_CoreAnimation(超详细解析核心动画) 老司机...

  • iOS-购物车动画

    参考:iOS开发笔记 | 仿京东的加入购物车动画、iOS 一分钟搞定加入购物车的交互动画 很多动画属性不太熟悉 直...

  • iOS 一分钟搞定加入购物车的交互动画

    iOS 一分钟搞定加入购物车的交互动画 iOS 一分钟搞定加入购物车的交互动画

  • UITableView相关

    iOS开发之UITableView全面解析详细整理:UITableView优化技巧iOS 保持界面流畅的技巧

  • iOS仿淘宝详情界面弹出动画

    前言 最近在开发一个农业电商项目,做到商品详情界面,选择规格时会弹出界面,需要仿照淘宝的动画,于是研究了 CATr...

  • iOS 之动画

    iOS 之动画 CALayer 和 UIView CALyer:主要负责渲染(界面和动画) UIView:在 la...

  • ios 相关知识复习

    1.CoreAnimation iOS动画篇_CoreAnimation(超详细解析核心动画) 扩展1彻底理解po...

网友评论

    本文标题:iOS淘宝购物界面动画解析

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