国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

iOS實現圖片抖動效果

2020-07-26 01:29:30
字體:
來源:轉載
供稿:網友

本文實例為大家分享了iOS實現圖片抖動效果的具體代碼,供大家參考,具體內容如下

效果圖:

核心代碼:

//// ViewController.m// 圖標抖動//// Created by llkj on 2017/8/29.// Copyright © 2017年 LayneCheung. All rights reserved.//#import "ViewController.h"#define angle2Rad(angle) ((angle) / 180.0 *M_PI)@interface ViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageV;@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; self.imageV.userInteractionEnabled = YES; //添加長按手勢 UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPress:)]; [self.imageV addGestureRecognizer:longPress];}- (void)longPress:(UILongPressGestureRecognizer *)longPress{ //創建動畫對象 CAKeyframeAnimation *anim = [CAKeyframeAnimation animation]; anim.keyPath = @"transform.rotation"; anim.values = @[@(angle2Rad(-5)),@(angle2Rad(5))]; anim.repeatCount = MAXFLOAT;// anim.duration = 1; anim.autoreverses = YES; [self.imageV.layer addAnimation:anim forKey:nil];}- (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.}@end

小編再給大家補充一段iOS UIView視圖抖動效果的實現代碼:

/** * 抖動效果 * * @param view 要抖動的view */- (void)shakeAnimationForView:(UIView *) view { CALayer *viewLayer = view.layer; CGPoint position = viewLayer.position; CGPoint x = CGPointMake(position.x + 1, position.y); CGPoint y = CGPointMake(position.x - 1, position.y); CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"]; [animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault]]; [animation setFromValue:[NSValue valueWithCGPoint:x]]; [animation setToValue:[NSValue valueWithCGPoint:y]]; [animation setAutoreverses:YES]; [animation setDuration:.06]; [animation setRepeatCount:3]; [viewLayer addAnimation:animation forKey:nil];}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 奇台县| 勃利县| 蕉岭县| 天全县| 轮台县| 扶沟县| 扶风县| 饶阳县| 武清区| 南城县| 阿城市| 洪湖市| 铜山县| 临澧县| 无棣县| 黄骅市| 邓州市| 正镶白旗| 鸡东县| 商洛市| 同江市| 疏附县| 梅河口市| 二连浩特市| 榆中县| 安仁县| 河池市| 南华县| 平利县| 凯里市| 湘乡市| 金湖县| 麻栗坡县| 福清市| 新巴尔虎右旗| 淮滨县| 上饶市| 五寨县| 平山县| 新平| 香港 |