pjebs / MXParallaxBackground

MXParallaxBackground is a simple background class for UIScrolView.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MXParallaxBackground

CI Status Version License Platform

MXParallaxBackground is a simple background class for UIScrolView.

Horizontal Vertical
Demo Demo

Usage

If you want to try it, simply run:

pod try MXParallaxBackground

Or clone the repo and run pod install from the Example directory first.

  • Adding a parallax background to a UIScrollView is straightforward, e.g:
UIImageView *imageView = [UIImageView new];
imageView.contentMode = UIViewContentModeScaleAspectFill;
imageView.image = [UIImage imageNamed:@"Background"];
    
MXParallaxBackground *background = [MXParallaxBackground new];
background.view = imageView;
background.intensity = 0.75;

UIScrollView *scrollView = [UIScrollView new]; 
[scrollView addBackground:background];

Installation

MXParallaxBackground is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "MXParallaxBackground"

Author

Maxime Epain

Twitter

Credits

Images are taken from this tutorial made by Jonathan Nicol.

License

MXParallaxBackground is available under the MIT license. See the LICENSE file for more info.

About

MXParallaxBackground is a simple background class for UIScrolView.

License:MIT License


Languages

Language:Objective-C 68.0%Language:Swift 28.3%Language:Ruby 3.8%