- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用 CATransition 从屏幕右侧滑入动画图像:
CATransition *transition = [CATransition animation];
transition.duration = TRANSITION_DURATION;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionPush;
transition.subtype = kCATransitionFromRight;
[self.layer addAnimation:transition forKey:nil];
self.image = [UIImage animatedImageNamed:prefix duration:ANIMATION_DURATION];
我的问题是,如何将图片滑出?一旦图像动画循环通过,我想将它按照它来的方向发送到屏幕外,即 TransitionToRight,但似乎没有这样的过渡类型。请建议我如何完成这种反向转换。
如果存在这样的反向转换,我可能会这样写:
[self performSelector:@selector(removeAnimatedImage) withObject:nil afterDelay:ANIMATION_DURATION];
在 removeAnimatedImage 中,我将创建另一个具有此相反方向的 CATransition 动画以将其发送出屏幕。
最佳答案
您是否尝试过 kCATransitionFromLeft 版本的推送过渡?它应该是 FromRight 的倒数。
关于ios - iphone - 撤消或反转 kCATransitionPush 以将图像发送到屏幕外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20560249/
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: iPhone CATransition adds a fade to the start and end of an
我试图让 UIView 向上滑动页面的四分之一以显示其下方的另一个 View (以显示选项),然后向下滑动以覆盖这些选项。我不懈地搜索,但似乎找不到我要找的东西。我不想使用模态视图,因为我想保持屏幕上
我目前正在使用 CATransition 从屏幕右侧滑入动画图像: CATransition *transition = [CATransition animation]; transition.du
这个问题在这里已经有了答案: 关闭10 年前。 Possible Duplicate: iPhone CATransition adds a fade to the start and end of
我在屏幕上的某个位置有一个 UIImageView: self.imageView = [[UIImageView alloc] init]; self.imageView.clipsToBounds
我是一名优秀的程序员,十分优秀!