作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我如何在两个 C4Image 之间制作某种动画或过渡?
我有这样的设置:
C4Image * img1 = [[C4Image alloc] initWithRawData:rawData width:width height:height];
C4Image * img2 = [[C4Image alloc] initWithRawData:rawData width:width height:height];
[self.canvas addImage:img1];
// insert magic here to trigger transition
[self.canvas addImage:img2];
最佳答案
最简单的转换方式是:
image1.animationDuration = 1.0f;
image1.image = image2;
您可以在此处找到一个片段,该片段在启动应用程序 1 秒后将图像交叉淡化为新图像:
关于ios - 在两个 C4Images 之间交叉淡入淡出或溶解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15181730/
我是一名优秀的程序员,十分优秀!