我可以使 GIF 动画帧在 ActionScript 中播放得更快吗?
比如说我有一个 10 帧的 gif。可以帮助我使 gif 以更快的速度浏览这些帧的代码是什么?
like say i have a gif that has 10 frames. what is the code that will help me make the gif go through those frames at a quicker pace?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从 GIF 中提取每一帧并将它们放置在时间线上,然后将电影的帧速率设置为您喜欢的任何值
Pull each frame from the GIF and place them om the timeline and then det the framerate of the movieto whatever you like
您可以在文件属性中设置帧速率(通过单击空白背景)。
You set the framerate in the file properties (by clicking on the empty background).
如果您想提高动画的 FPS 速率,则无法通过代码来实现。 .fla 帧速率由位于动画“属性”面板中的 FPS 字段定义。
您可以使用 Actionscript 的 EnterFrame 事件来控制动画的流程,但即使使用它,您也无法更改帧速率。
子电影将继承父电影的帧速率。
If you want to increase your animation's FPS rate, you can't do it by code. The .fla framerate is defined by the field FPS, located in the Properties panel of the animation.
You can use the EnterFrame event of Actionscript to control the flow of your animation, but even with it you can't change the framerate.
Child movies will inherits the framerate's parent movie.