類似歌詞的字體顏色漸變效果

先上圖

111.gif

產(chǎn)品有一個這樣的需求,在下拉的過程中撩穿,@“PUNJECT”這幾個字從左到右發(fā)生顏色的變化。拿到這個需求先上網(wǎng)找了一下demo雾狈,看到了(http://www.reibang.com/p/93592bdc99c6) 這個文章抵皱,很有啟發(fā),于是模仿大神的demo實現(xiàn)了一下效果呻畸。

這個需求類似于歌詞的顯示

222.gif

思路

1、底部有一個backgroundLabel咒循,中部有一個clipView,前部有一個foregroundLabel叙甸。


333.png

2位衩、中間的clipView決定了前部foregroundLabel顯示的多少,代碼中設置了_clipView.clipsToBounds = YES; _clipView.backgroundColor = [UIColor clearColor];蚂四,如果大家把這兩句話分別注釋,就會看到非常明顯的效果久妆。

設置 _clipView.backgroundColor = [UIColor greenColor]
444.gif
設置 _clipView.clipsToBounds = NO

你會發(fā)現(xiàn)字體顏色就是你設置的前景顏色跷睦。

這樣不難發(fā)現(xiàn),因為 _clipView.clipsToBounds = YES,所以_clipView其余的部分顯示不出來爹殊,那么只要把foregroundLabel加到_clipView上再設置_clipView.clipsToBounds = YES。最后控制_clipView的寬度梗夸,就可以實現(xiàn)這個效果了号醉。

代碼

自定義.h文件中


@property (nonatomic , assign)CGFloat clipWidth;//*進度控制視圖*/
@property (nonatomic , assign)CGFloat progress;//*進度(0,1)*/

@property (nonatomic , strong)UIColor *foregroundTextColor;//*前景字體顏色*/
@property (nonatomic , strong)UIColor *backgroundTextColor;//*背景字體顏色*/

@property (nonatomic , strong)NSString *text;//*內(nèi)容*/
@property (nonatomic , strong)UIFont *font;//*大小*/
自定義.m文件中
@property (nonatomic , strong)UILabel *foregroundLabel;//*前景l(fā)abel*/
@property (nonatomic , strong)UILabel *backgroundLabel;//*北京label*/
@property (nonatomic , strong)UIView *clipView;        //*進度view*/

#pragma mark ----------- 不支持此初始化方法 -----------
- (instancetype)init {
    return nil;
}

- (instancetype)initWithCoder:(NSCoder *)aDecoder {
    if (self = [super initWithCoder:aDecoder]) {
        
    }
    return self;
}

#pragma mark ----------- 初始化方法 -----------
- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        
        [self addSubview:self.backgroundLabel];
        [self addSubview:self.clipView];
        [self.clipView addSubview:self.foregroundLabel];
        
    }
    return self;
}

#pragma mark ----------- set方法 -----------

- (void)setClipWidth:(CGFloat)clipWidth {
    _clipWidth = clipWidth;
    CGRect rect = self.clipView.frame;
    rect.size.width = _clipWidth;
    self.clipView.frame = rect;
}

- (void)setProgress:(CGFloat)progress {
    _progress = progress;
    CGRect rect = self.clipView.frame;
    rect.size.width = self.frame.size.width * _progress;
    self.clipView.frame = rect;
}

- (void)setForegroundTextColor:(UIColor *)foregroundTextColor {
    _foregroundTextColor = foregroundTextColor;
    self.foregroundLabel.textColor = _foregroundTextColor;
}

- (void)setBackgroundTextColor:(UIColor *)backgroundTextColor {
    _backgroundTextColor = backgroundTextColor;
    self.backgroundLabel.textColor = _backgroundTextColor;
}

- (void)setText:(NSString *)text {
    _text = text;
    self.foregroundLabel.text = _text;
    self.backgroundLabel.text = _text;
}

- (void)setFont:(UIFont *)font {
    _font = font;
    self.foregroundLabel.font = _font;
    self.backgroundLabel.font = _font;
}


#pragma mark ----------- 懶加載 -----------

- (UILabel *)foregroundLabel {
    if (_foregroundLabel == nil) {
        _foregroundLabel = [[UILabel alloc]initWithFrame:self.bounds];
        _foregroundLabel.textAlignment = NSTextAlignmentCenter;
    }
    return _foregroundLabel;
}

- (UILabel *)backgroundLabel {
    if (_backgroundLabel == nil) {
        _backgroundLabel = [[UILabel alloc]initWithFrame:self.bounds];
        _backgroundLabel.textAlignment = NSTextAlignmentCenter;
    }
    return _backgroundLabel;
}

- (UIView *)clipView {
    if (_clipView == nil) {
        _clipView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, self.bounds.size.height)];
        _clipView.backgroundColor = [UIColor clearColor];
        _clipView.clipsToBounds = NO;
    }
    return _clipView;
}

到此這個功能就實現(xiàn)了铅碍,現(xiàn)在我們把他加入到tableView中實現(xiàn)App需要的效果线椰。

思路

設置tableView的尾視圖,通過UIScrollViewDelegate中的- (void)scrollViewDidScroll:(UIScrollView *)scrollView方法來控制顏色的變化烦绳。

.m文件中
//首先要引入頭文件
#import "SSYProgressLabel.h"        //**自定義label*/

@property (nonatomic , strong)UITableView *tableView;

@property (nonatomic , strong)SSYProgressLabel *footerLabel;//*footer*/

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    [self createUI];
    
}

#pragma mark ----------- 創(chuàng)建UI -----------

- (void)createUI {
    [self.view addSubview:self.tableView];
}

#pragma mark ----------- UITableViewDelegate && UITableViewDataSource -----------

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 10;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
    if (cell == nil) {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];
    }
    
    cell.textLabel.text = @"測試測試";
    
    return cell;
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    
    return self.footerLabel;
}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    return 135;
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    
//    NSLog(@"%f",scrollView.contentOffset.y + 64);
    
    if (scrollView.contentOffset.y + 64 > 0) {
        self.footerLabel.clipWidth = (scrollView.contentOffset.y + 64) * 2;
    }
}

#pragma mark ----------- 懶加載 -----------

- (UITableView *)tableView {
    if (!_tableView) {
        _tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight) style:UITableViewStyleGrouped];
        _tableView.delegate = self;
        _tableView.dataSource = self;
        _tableView.backgroundColor = [UIColor whiteColor];
    }
    return _tableView;
}

- (SSYProgressLabel *)footerLabel {
    if (!_footerLabel) {
        _footerLabel = [[SSYProgressLabel alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, 135)];
        _footerLabel.text = @"P U N J E C T";
        _footerLabel.font = [UIFont systemFontOfSize:58];
        _footerLabel.backgroundTextColor = [UIColor lightGrayColor];
        _footerLabel.foregroundTextColor = [UIColor orangeColor];
    }
    return _footerLabel;
}

最終效果

555.gif

Github鏈接

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末爵嗅,一起剝皮案震驚了整個濱河市笨蚁,隨后出現(xiàn)的幾起案子趟庄,更是在濱河造成了極大的恐慌括细,老刑警劉巖戚啥,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異览濒,居然都是意外死亡拖云,警方通過查閱死者的電腦和手機贷笛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進店門宙项,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人汇荐,你說我怎么就攤上這事洞就∠铺裕” “怎么了?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵倾贰,是天一觀的道長。 經(jīng)常有香客問我躁染,道長架忌,這世上最難降的妖魔是什么吞彤? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任叹放,我火速辦了婚禮,結(jié)果婚禮上埋嵌,老公的妹妹穿的比我還像新娘。我一直安慰自己雹嗦,他們只是感情好合是,可當我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著聪全,像睡著了一般。 火紅的嫁衣襯著肌膚如雪难礼。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天讼呢,我揣著相機與錄音,去河邊找鬼吝岭。 笑死,一個胖子當著我的面吹牛窜管,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播幕帆,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼常熙!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起裸卫,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤纽竣,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后蜓氨,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡穴吹,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了啥容。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片顷霹。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖泼返,靈堂內(nèi)的尸體忽然破棺而出姨拥,到底是詐尸還是另有隱情绅喉,我是刑警寧澤,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布柴罐,位于F島的核電站憨奸,受9級特大地震影響革屠,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜似芝,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望详炬。 院中可真熱鬧寞奸,春花似錦呛谜、人聲如沸枪萄。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至逻悠,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間童谒,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工象浑, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留琅豆,地道東北人愉豺。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓茫因,卻偏偏與公主長得像,于是被迫代替她去往敵國和親冻押。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內(nèi)容