SkillAgentSearch skills...

Parallax

Objective-C library for implementation of CoreMotion-controlled parallax distortion.

Install / Use

/learn @thisandagain/Parallax
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Parallax

Objective-C library for simple implementation of CoreMotion-controlled parallax distortion.

Installation

  • Copy DIYParallax.h and DIYParallax.m into your project
  • Add the "CoreMotion" framework to your project

Getting Started

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    //
    
    parallax = [[DIYParallax alloc] initWithFrame:self.view.frame];

    [parallax addLayer:0.0 imageNamed:@"layer_1@2x.png" frame:CGRectMake(0, 0, 480, 320)];
    [parallax addLayer:0.1 imageNamed:@"layer_2@2x.png" frame:CGRectMake(240, 0, 240, 320)];
    [parallax addLayer:0.2 imageNamed:@"layer_3@2x.png" frame:CGRectMake(240, 160, 240, 160)];
    [parallax addLayer:0.3 imageNamed:@"layer_4@2x.png" frame:CGRectMake(120, 160, 120, 160)];
    [parallax addLayer:0.8 imageNamed:@"layer_5@2x.png" frame:CGRectMake(60, 160, 60, 160)];
    
    [self.view addSubview:parallax];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    
    [parallax startListening];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
    
    [parallax stopListening];
}

Public Methods

- (void)addLayer:(CGFloat)depth imageNamed:(NSString *)asset frame:(CGRect)frame;
- (void)startListening;
- (void)stopListening;

Properties

DIYParallax is a subclass of UIView, thus all properties and methods inherent to UIView can be applied. For more information, please check the UIView class reference.

View on GitHub
GitHub Stars44
CategoryDevelopment
Updated9y ago
Forks8

Languages

Objective-C

Security Score

60/100

Audited on Jan 19, 2017

No findings