spring动画(swift)
by 伍雪颖
loginButton.center.y
+=
30
loginButton.alpha
=
0
UIView.animateWithDuration(1,
delay:
0.5,
usingSpringWithDamping:
0.5,
initialSpringVelocity:
0,
options: .AllowUserInteraction,
animations: {
self.loginButton.center.y
-=
30
self.loginButton.alpha
=
1
}, completion:
nil)
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-19 12:37:53