可以制作透明渐变蒙版吗?
我在 uiscrollview 中有不同的图像,我想知道是否可以创建 100% - 50% - 0% 透明度的蒙版覆盖,这样当图像移出时我可以得到平滑的淡入淡出效果。
i have different images in a uiscrollview and i want to know if it´s possible to create an mask-overlay from from 100% - 50% - 0% transparency, so i get smooth fades when the images are moving out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您想要执行的操作,您可以简单地创建一个黑色的覆盖视图,并将其 alpha 更改为 0 并为更改设置动画。像这样的东西应该可以解决问题:
或者你可以使用 CATransition,这样的东西应该可以做到这一点:
Depending on what you are trying to do you can simply create an overlay view that is black and change it's alpha to 0 and animate the change. Something like this should do the trick:
Or you could use CATransition, where something like this should do it: