添加渐变色

简介: 添加渐变色

(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;

}

目录
相关文章
|
7月前
Echarts线性渐变、径向渐变、纹理填充
Echarts线性渐变、径向渐变、纹理填充
|
7月前
|
前端开发
边框宽度和边框颜色
边框宽度和边框颜色。
37 1
|
7月前
边框虚线滚动动画特效
边框虚线滚动动画特效
SVG 线性渐变 和 径向渐变
SVG 线性渐变 和 径向渐变
206 0
|
前端开发 JavaScript
canvas-渐变文字
html要求: body这里的onload一定要写,在这个处理模式下,是在body这里执行加载页面完成后加载canvas的命令。有的写在了js中的window.onload=function(){},这里就要换一种写法了。
870 0
shape颜色渐变、圆角、半圆角、边框、填充
shape颜色渐变、圆角、半圆角、边框、填充
452 0
shape颜色渐变、圆角、半圆角、边框、填充
|
前端开发 容器
巧妙实现带圆角的渐变边框
巧妙实现带圆角的渐变边框
385 0
巧妙实现带圆角的渐变边框
SwiftUI—使用径向渐变制作从原点向外扩散的渐变颜色
SwiftUI—使用径向渐变制作从原点向外扩散的渐变颜色
462 0
SwiftUI—使用径向渐变制作从原点向外扩散的渐变颜色