美文网首页
简单动画之输入框抖动效果

简单动画之输入框抖动效果

作者: iCoders | 来源:发表于2016-09-01 14:20 被阅读0次
    抖动效果
    /**
    
    *为textField扩展一个左右晃动的动画
    
    */
    
    - (void)shake {
    
    CAKeyframeAnimation*keyFrame = [CAKeyframeAnimationanimationWithKeyPath:@"position.x"];
    
    keyFrame.duration=0.3;
    
    CGFloatx =self.layer.position.x;
    
    keyFrame.values=@[@(x -30),@(x -30),@(x +20),@(x -20),@(x +10),@(x -10),@(x +5),@(x -5)];
    
    [self.layeraddAnimation:keyFrameforKey:@"shake"];
    
    }
    

    相关文章

      网友评论

          本文标题:简单动画之输入框抖动效果

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