- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为 CAGradient 设置动画
let gradientChangeAnimation = CABasicAnimation(keyPath: "colors")
gradientChangeAnimation.duration = 5.0
gradientChangeAnimation.toValue = [
UIColor(red: 244/255, green: 88/255, blue: 53/255, alpha: 1).cgColor,
UIColor(red: 196/255, green: 70/255, blue: 107/255, alpha: 1).cgColor
]
gradientChangeAnimation.fillMode = kCAFillModeForwards
gradientChangeAnimation.isRemovedOnCompletion = false
gradientLayer.add(gradientChangeAnimation, forKey: "colorChange")
当我使用这种方法将它添加到 View 时它工作正常
self.view.layer.addSublayer(gradientLayer)
但是,它现在阻止了我所有的 UI 按钮和图标,所以我尝试将它插入到这些项目下面
self.view.layer.insertSublayer(gradientLayer, at: 0)
但是当我这样做时,动画完全停止工作
为什么会这样?
最佳答案
有时我会以自己的愚蠢给自己留下深刻印象。当我在 Storyboard中构建界面时,我有一张渐变的测试图片可以使用。新的动画渐变明显位于测试图片下方,并且隐藏在视线之外。
关于ios - layer.addSublayer 与 layer.insertSublayer 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45156565/
我正在尝试向我的 View 添加渐变,并将以下内容添加到 drawRect: CAGradientLayer *g = [[CAGradientLayer alloc]init]; g.frame =
我无法将 CAlayer 中的图像显示在 imageView 中。我可以让它与 CAGradientLayer 一起工作,但是当我将它更改为带有图像的 CALayer 时,似乎没有任何效果。如果框架被
我认为当我像这样添加一个 View 作为 subview 时: UIView* view = [[UIView alloc] init]; [self addSubview:view]; [view
我正在学习有关 Core Animation 书籍的教程,并尝试执行以下操作。 @interface ViewController () @property (nonatomic, weak) IBO
我写这段代码: let myAttributes = [ NSAttributedStringKey.font: UIFont(name: "Avenir-HeavyOblique", siz
如何在同一个 UIView 中正确使用这两个? 我有一个自定义子类 CALayer,我在其中绘制了 drawInContext 中的图案 我有另一个,我在其中设置了一个覆盖 PNG 图像作为内容。 我
问题 如何为您的图层创建单独的上下文并将该上下文合并到 super 图层中? 为什么我要这样做 我想将 View 层的绘制抽象为单独的对象/文件。我想用图层构建一个 View ,然后将其放置在另一个
当我按照以下方式编写代码时.. - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentConte
当我绘制图形并将其添加到 Controller 的 View 时,图形显示正确。 CAShapeLayer *shapeLayer = [CAShapeLayer layer]; self.curre
我正在为 CAGradient 设置动画 let gradientChangeAnimation = CABasicAnimation(keyPath: "colors") gradientC
下面是我用来通过 -addSublayer 将 UIButton 添加到层的代码: CAGradientLayer * tile = [[tile alloc] init]; UIButto
我是一名优秀的程序员,十分优秀!