斯威夫特 - 动画方向

时间:2018-01-12 02:02:38

标签: ios swift uiviewanimation

我遇到了一个简单问题的噩梦。在我的应用程序中,我有云在后台移动(目前从左到右)。

然而,背景是他们需要从右到左。

编辑以下更多的页面代码。希望这会更容易解决我出错的地方。

@IBOutlet var cloud1: UIImageView!
@IBOutlet var cloud2: UIImageView!
@IBOutlet var cloud3: UIImageView!
@IBOutlet var cloud4: UIImageView!


override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

override func viewWillAppear(_ animated: Bool) {

    cloud1.alpha = 0.0
    cloud2.alpha = 0.0
    cloud3.alpha = 0.0
    cloud4.alpha = 0.0

}

override func viewDidAppear(_ animated: Bool) {


    UIView.animate(withDuration: 2.0, delay: 0.1,
                   options: [],
                   animations: {
                    self.cloud1.alpha = 1.0
    }, completion: nil)

    UIView.animate(withDuration: 2.0, delay: 0.1,
                   options: [],
                   animations: {
                    self.cloud2.alpha = 1.0
    }, completion: nil)

    UIView.animate(withDuration: 2.0, delay: 0.1,
                   options: [],
                   animations: {
                    self.cloud3.alpha = 1.0
    }, completion: nil)

    UIView.animate(withDuration: 2.0, delay: 0.1,
                   options: [],
                   animations: {
                    self.cloud4.alpha = 1.0
    }, completion: nil)

    animateTheClouds(cloud: cloud1)
    animateTheClouds(cloud: cloud2)
    animateTheClouds(cloud: cloud3)
    animateTheClouds(cloud: cloud4)

}

func animateTheClouds(cloud : UIImageView) {
    let cloudMovingSpeed = 60.0/view.frame.size.width
    let duration = (view.frame.size.width - cloud.frame.origin.x) * cloudMovingSpeed
    UIView.animate(withDuration: TimeInterval(duration), delay: 0.0, options: .curveLinear, animations: {
        // Animate the origin to be off the left side of the screen.
        cloud.frame.origin.x = cloud.frame.size.width
    }, completion: {_ in
        // Reset back to the right edge of the screen
        cloud.frame.origin.x = -self.view.frame.size.width
        self.animateTheClouds(cloud: cloud)
    })

1 个答案:

答案 0 :(得分:2)

如果你想从右向左移动它们,你只需要改变起始和结束x原点。

func animateTheClouds(cloud : UIImageView) {
    let cloudMovingSpeed = 60.0/view.frame.size.width
    let duration = (cloud.frame.origin.x + cloud.frame.size.width) * cloudMovingSpeed
    UIView.animate(withDuration: TimeInterval(duration), delay: 0.0, options: .curveLinear, animations: {
        // Animate the origin to be off the left side of the screen.
        cloud.frame.origin.x = -cloud.frame.size.width
    }, completion: {_ in
        // Reset back to the right edge of the screen
        cloud.frame.origin.x = self.view.frame.size.width
        self.animateTheClouds(cloud: cloud)
    })

还要确保初始x原点设置为self.view.frame.size.width