Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CAMediaTiming 协议定义了一个 timeOffset 属性。现在,他们说这是一个时间偏移。这听起来很简单,但是,例如,当我将其设置为 15.0 时,动画仍然会立即开始。timeOffset 似乎没有任何效果。
也许有人可以指出一点?
timeOffest 属性将动画的起点更改为起点以外的时间。
假设您有一个持续时间为 5 秒的动画。通常,您的动画将从时间 0 运行到时间 5。如果将 timeOffset 设置为 2,则您的动画将从时间 2 开始,到达时间 5,然后“环绕”并运行时间 0 到时间 2。
要延迟动画的开始,请使用 beginTime 属性。