zoukankan      html  css  js  c++  java
  • 搜索框,导航栏随页面滑动渐变

    简单的变化

    #pragma mark - scrollViewDelegate
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView
    {
        CGFloat alpha = scrollView.contentOffset.y / 100;
        if (alpha >= 1) {
            alpha = 1;
        }else if (alpha <= 0)
        {
            alpha = 0;
        }
        self.naviView.backgroundColor = [UIcolor colorWithAlphaComponent:alpha];
    }

    //一些更多的变化

    - (void)scrollViewDidScroll:(UIScrollView *)scrollView{
        if (scrollView == self.myTableView) {
            if (scrollView.contentOffset.y<(200-_homeView.mj_h)){
                float alpha = scrollView.contentOffset.y/(200-_homeView.mj_h);
                _homeView.backgroundColor = [[UIColor whiteColor]colorWithAlphaComponent:alpha];
                if (alpha>0.5) {
                    if(!CGColorEqualToColor(self.titleView.backgroundColor.CGColor, [UIColor colorHexString:@"#efefef"].CGColor)){
                        [[UIApplication sharedApplication]setStatusBarStyle:UIStatusBarStyleDefault animated:NO];
                        self.telButton.buttonImageView.image = [UIImage imageNamed:@"sy_kf_hei_icon"];
                        self.telButton.titleLabel.textColor = [UIColor colorHexString:@"#3d3d3d"];
                        self.titleView.backgroundColor = [UIColor colorHexString:@"#efefef"];
                        self.messageLabel.textColor = [UIColor colorHexString:@"#3d3d3d"];
                        [self.messageButtonItem setImage:[UIImage imageNamed:@"zjwd_db_ssk_xx_icon"] forState:UIControlStateNormal];
                    }
                }
                else{
                    if(!CGColorEqualToColor(self.titleView.backgroundColor.CGColor, [UIColor whiteColor].CGColor)){
                        [[UIApplication sharedApplication]setStatusBarStyle:UIStatusBarStyleLightContent animated:NO];
                        self.telButton.buttonImageView.image = [UIImage imageNamed:@"sy_kf_bai_icon"];
                        self.telButton.titleLabel.textColor = [UIColor colorHexString:@"#ffffff"];
                        self.titleView.backgroundColor = [UIColor whiteColor];
                        self.messageLabel.textColor = [UIColor colorHexString:@"#ffffff"];
                        [self.messageButtonItem setImage:[UIImage imageNamed:@"sy_xx_bai_icon"] forState:UIControlStateNormal];
                    }
                }
                
            }
            else
            {
                _homeView.backgroundColor = [[UIColor whiteColor]colorWithAlphaComponent:1.0f];
                if(!CGColorEqualToColor(self.titleView.backgroundColor.CGColor, [UIColor colorHexString:@"#efefef"].CGColor)){
                    [[UIApplication sharedApplication]setStatusBarStyle:UIStatusBarStyleDefault animated:NO];
                    self.telButton.buttonImageView.image = [UIImage imageNamed:@"sy_kf_hei_icon"];
                    self.telButton.titleLabel.textColor = [UIColor colorHexString:@"#3d3d3d"];
                    self.titleView.backgroundColor = [UIColor colorHexString:@"#efefef"];
                    self.messageLabel.textColor = [UIColor colorHexString:@"#3d3d3d"];
                    [self.messageButtonItem setImage:[UIImage imageNamed:@"zjwd_db_ssk_xx_icon"] forState:UIControlStateNormal];
                }
            }
        }
    }
  • 相关阅读:
    Linux 杂记
    Hadoop多硬盘配置时的注意事项
    spark-env.sh 配置示例
    Nagios监控ganglia的指标
    ELK日志解决方案安装配置与使用
    zookeeper 相关学习资料
    Hive分析hadoop进程日志
    hadoop2.3cdh5.0.2 upgrade to hadoop2.5cdh5.5.0
    Nagios check_logfiles插件的使用记录
    Hadoop Kernel tunning
  • 原文地址:https://www.cnblogs.com/OIMM/p/9013002.html
Copyright © 2011-2022 走看看