添加渐变色

简介: 添加渐变色

(UIImageView )smallBackgroundImageView {

if(!_smallBackgroundImageView)

{

_smallBackgroundImageView = [[UIImageView alloc] initWithFrame:CGRectMake(12,FULL_WIDTH207/375+5+147.5+10, FULL_WIDTH-12*2, (FULL_WIDTH-24)*90/351)];

[_smallBackgroundImageView addCornerWithCornerRadius:20.0/2];

_smallBackgroundImageView.backgroundColor = [UIColor clearColor];

  CAGradientLayer *gradientLayer = [CAGradientLayer layer];
  gradientLayer.colors = @[(__bridge id)((BGColorHex(F7391F)).CGColor), (__bridge id)((BGColorHex(FE6B56)).CGColor)];
  gradientLayer.startPoint = CGPointMake(0.5, 0);
  gradientLayer.endPoint = CGPointMake(0.5, 1);
  gradientLayer.frame = CGRectMake(0, 0, FULL_WIDTH-12*2, (FULL_WIDTH-24)*90/351);
  
  [_smallBackgroundImageView.layer addSublayer:gradientLayer];

}

return _smallBackgroundImageView;

}

目录
相关文章
|
8月前
|
前端开发
边框宽度和边框颜色
边框宽度和边框颜色。
42 1
|
8月前
边框虚线滚动动画特效
边框虚线滚动动画特效
SVG 线性渐变 和 径向渐变
SVG 线性渐变 和 径向渐变
211 0
shape颜色渐变、圆角、半圆角、边框、填充
shape颜色渐变、圆角、半圆角、边框、填充
467 0
shape颜色渐变、圆角、半圆角、边框、填充
|
前端开发 容器
巧妙实现带圆角的渐变边框
巧妙实现带圆角的渐变边框
399 0
巧妙实现带圆角的渐变边框
SwiftUI—使用径向渐变制作从原点向外扩散的渐变颜色
SwiftUI—使用径向渐变制作从原点向外扩散的渐变颜色
471 0
SwiftUI—使用径向渐变制作从原点向外扩散的渐变颜色

热门文章

最新文章