美文网首页
前后滑动动画

前后滑动动画

作者: DSperson | 来源:发表于2016-03-09 18:09 被阅读31次

CAKeyframeAnimation* animation = [CAKeyframeAnimationanimationWithKeyPath:@"transform.translation.x"];

CGFloatcurrentTx =addShopImageView.transform.tx;

animation.delegate=self;

animation.duration=0.3;

animation.values=@[@(currentTx),@(currentTx +10),@(currentTx-8),@(currentTx +8),@(currentTx -5),@(currentTx +5),@(currentTx)];

animation.keyTimes=@[@(0),@(0.225),@(0.425),@(0.6),@(0.75),@(0.875),@(1)];

animation.timingFunction= [CAMediaTimingFunctionfunctionWithName:kCAMediaTimingFunctionEaseInEaseOut];

[addShopImageView.layeraddAnimation:animationforKey:@"DSAddShopSnakeAnimation"];

相关文章

  • 前后滑动动画

    CAKeyframeAnimation* animation = [CAKeyframeAnimationanim...

  • 弹性滑动和惯性滑动

    弹性滑动指的是平滑的滑动(smoothScrollTo),可以用View动画,属性动画,Scroller来实现,当...

  • 七、JQuery-4、DIV的动画、显示及隐藏

    1、animate动画 2、slideUp、slideDown向上向下滑动 向上滑动 向下滑动 3、slideTo...

  • jQuery 制作无缝轮播的焦点图

    网站上经常见到焦点图动画,焦点图的动画有多种,如:淡入淡出型、上下滑动型、左右滑动型、左右滑动无缝型,对比用户体验...

  • View的滑动

    view的滑动方法有3种: scrollTo();scrollBy(); 动画(view动画和属性动画) 动态改变...

  • animate

    jquery动画 显示与隐藏 淡入与淡出 滑动 停止动画 自定义动画 动画队列,将多组动画按顺序播放

  • TCP/IP 协议(转)

    参考:TCP/IP 协议tcp窗口滑动以及拥塞控制解析TCP之滑动窗口(动画演示)

  • Android开发-引导页图片滑动效果

    Android开发-引导页图片滑动效果 需求: 打开app引导页图片产生滑动动画效果,根据需要将图片设置渐变、滑动...

  • 滑动卡片动画

  • 动画

    1、卷动动画:slideup()----------(卷动)slidedown()-------(滑动)slide...

网友评论

      本文标题:前后滑动动画

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