美文网首页
iOS 动画 -- Chapter 1

iOS 动画 -- Chapter 1

作者: ted005 | 来源:发表于2016-11-25 17:56 被阅读24次

    同时:

    UIView.animate(withDuration: 0.5, delay: 0.3, options: [], animations: {
        self.username.center.x += self.view.bounds.width;
        }, completion: nil)
    
    UIView.animate(withDuration: 0.5, delay: 0.3, options: [], animations: {
        self.password.center.x += self.view.bounds.width;
        }, completion: nil)
    
    gif3.gif

    Repeat

     UIView.animate(withDuration: 0.5, delay: 0.3, options: [.repeat], animations: {
             self.username.center.x += self.view.bounds.width;
          }, completion: nil)
    
    gif1.gif

    AutoReverse

    UIView.animate(withDuration: 0.5, delay: 0.3, options: [.autoreverse], animations: {
            self.username.center.x += self.view.bounds.width;
        }, completion: nil)
    
    gif4.gif

    Include this option only in conjunction with .repeat

    Repeat & AutoReverse

    UIView.animate(withDuration: 0.5, delay: 0.3, options: [.repeat, .autoreverse], animations: {
            self.username.center.x += self.view.bounds.width;
        }, completion: nil)
    
    gif2.gif

    相关文章

      网友评论

          本文标题:iOS 动画 -- Chapter 1

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