zoukankan      html  css  js  c++  java
  • 窗口抖动效果

    方法1
    
    -(void)earthquake:(UIView*)itemView
    {
        CGFloat t =2.0;
    
        CGAffineTransform leftQuake  =CGAffineTransformTranslate(CGAffineTransformIdentity, t,-t);
        CGAffineTransform rightQuake =CGAffineTransformTranslate(CGAffineTransformIdentity,-t, t);
    
        itemView.transform = leftQuake;  // starting point
    
        [UIView beginAnimations:@"earthquake" context:itemView];
        [UIView setAnimationRepeatAutoreverses:YES];// important
        [UIView setAnimationRepeatCount:5];
        [UIView setAnimationDuration:0.07];
        [UIView setAnimationDelegate:self];
        [UIView setAnimationDidStopSelector:@selector(earthquakeEnded:finished:context:)];
    
        itemView.transform = rightQuake;// end here & auto-reverse
    
        [UIView commitAnimations];
    }
    
    -(void)earthquakeEnded:(NSString*)animationID finished:(NSNumber*)finished context:(void*)context 
    {
        if([finished boolValue]) 
        {
            UIView* item =(UIView*)context;
            item.transform =CGAffineTransformIdentity;
        }
    
    }
    
    
    
    
    方法2
    
    -(void)shakeView:(UIView*)viewToShake
    {
        CGFloat t =2.0;
        CGAffineTransform translateRight  =CGAffineTransformTranslate(CGAffineTransformIdentity, t,0.0);
        CGAffineTransform translateLeft =CGAffineTransformTranslate(CGAffineTransformIdentity,-t,0.0);
    
        viewToShake.transform = translateLeft;
    
        [UIView animateWithDuration:0.07 delay:0.0 options:UIViewAnimationOptionAutoreverse|UIViewAnimationOptionRepeat animations:^{
            [UIView setAnimationRepeatCount:2.0];
            viewToShake.transform = translateRight;
        } completion:^(BOOL finished){
            if(finished){
                [UIView animateWithDuration:0.05 delay:0.0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
                    viewToShake.transform =CGAffineTransformIdentity;
                } completion:NULL];
            }
        }];
    
    }
  • 相关阅读:
    python操作MySQL数据库
    fs 小计
    yii xss模型安全
    freeswitch 音 视频 支持的编码
    MYSQL手工注入某日本网站
    Linux 系统 pptpd+radius+mysql 安装攻略
    mysql主从复制之mysql-proxy实现读写分离
    nginx-1.2.7+tcp_proxy_module负载均衡配置
    nginx-1.2.7 + tcp_proxy_module手动编译安装
    关于弹框的那些事~
  • 原文地址:https://www.cnblogs.com/gaoxiao228/p/2482247.html
Copyright © 2011-2022 走看看