在 iPhone 中创建恶搞动画的代码
我想制作一个类似于 macOS 中的 poof 动画(云动画:将图标拖出 Dock 时发生)的动画。我尝试了很多,但找不到任何代码来制作这个动画。所以请指导我如何在 iPhone 中制作这个动画。是否有任何特定的动画,例如收缩、页面卷曲等,或者我们必须使用 png 文件创建动画
I want to make an animation similar to the poof animation(cloud animation: which occurs when an icon is dragged out of the dock) in macOS. I tried a lot but cannot find any code to do this animation.So please guide me how can i make this animation in iphone. Is there any specific animation for this like shrink, page curl etc or we have to create the animation using png files
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用 .png 文件。
You will have to use .png files.
没有这样的内置动画,您必须自己创建它,并且正如您所建议的,.png 文件是推荐在 iPhone 中使用的格式,尽管并没有严格禁止您使用任何受支持的格式。
最简单的方法可能是使用 UIImageView,因为它能够对内置的一系列动画进行动画处理。
There is no such built-in animation, you will have to create it yourself, and, as you suggested, .png files are the recommended format to use in the iPhone, although you are not strictly prevented from using any supported format.
The easiest way might be to use a UIImageView, since it has the capability to animate a series of animations built into it.