时间:2021-05-20
WSDrawCircleProgress, 根据UIBezierPath和CAShapeLayer自定义倒计时进度条,适用于app启动的时候设置一个倒计时关闭启动页面。可以设置进度条颜色,填充颜色,进度条宽度以及点击事件等。
公共方法:
//set track color @property (nonatomic,strong)UIColor *trackColor; //set progress color @property (nonatomic,strong)UIColor *progressColor; //set track background color @property (nonatomic,strong)UIColor *fillColor; //set progress line width @property (nonatomic,assign)CGFloat lineWidth; //set progress duration @property (nonatomic,assign)CGFloat animationDuration; /** * set complete callback * * @param lineWidth line width * @param block block * @param duration time */ - (void)startAnimationDuration:(CGFloat)duration withBlock:(DrawCircleProgressBlock )block;使用:
- (void)viewDidLoad { [super viewDidLoad]; [self.view addSubview:self.imageView]; DrawCircleProgressButton *drawCircleView = [[DrawCircleProgressButton alloc]initWithFrame:CGRectMake(self.view.frame.size.width - 55, 30, 40, 40)]; drawCircleView.lineWidth = 2; [drawCircleView setTitle:@"跳过" forState:UIControlStateNormal]; [drawCircleView setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; drawCircleView.titleLabel.font = [UIFont systemFontOfSize:14]; [drawCircleView addTarget:self action:@selector(removeProgress) forControlEvents:UIControlEventTouchUpInside]; /** * progress 完成时候的回调 */ __weak ViewController *weakSelf = self; [drawCircleView startAnimationDuration:5 withBlock:^{ [weakSelf removeProgress]; }]; [self.view addSubview:drawCircleView]; }声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一般在项目的“引导页”有个功能,倒计时5秒结束后,然后可以允许用户点击跳过按钮跳过引导页。同样在“登录”和“注册”页面也有类似功能,发送验证码后,计时60秒后才
倒计时功能被广泛运用在App启动页、短信验证码倒计时等,通常做法是起一个Handler,在子线程里完成倒计时,如今这一做法有了替代品——RxJava,RxJav
一、功能效果1、通过增加倒计时的互动方式,来丰富网站效果,增加与客户的粘性2、适用于所有活动倒计时场景,各类考试倒计时、项目启动、优惠庆典等营销活动倒计时场景;
Js倒计时代码,带闹铃功能,自定义闹钟倒计时功能,点击开始按钮,即可开始倒数,代码不是太复杂,新手应该能看懂,代码分享给大家。效果图:源码:Js倒计时,闹铃功能
1、功能描述 当用户想要获取验证码时,就点击免费获取验证码,然后开始倒计时,倒计时期间按钮文字为剩余时间x秒,且不可按状态,倒计时结束后,按钮更改为点击重新发