Giter VIP home page Giter VIP logo

crmotionview's Introduction

CRMotionView

A custom photo viewer that implements device motion scrolling, inspired by Facebook Paper.

License MIT Build Platform Build Version Build Status

Installation

CocoaPods

  • Add the dependency to your Podfile:
platform :ios
pod 'CRMotionView'
...
  • Run pod install to install the dependencies.

Source files

Just clone this repository or download it in zip-file. Then you will find source files under CRMotionView directory. Copy them to your project.

Usage

  • Import the header file to your view controller:
#import "CRMotionView.h"
  • Create an instance
CRMotionView *motionView = [[CRMotionView alloc] initWithFrame:self.view.bounds];
  • Set an image...
[motionView setImage:[UIImage imageNamed:@"Image"]];
  • ... or set a generic view
UIView *myView = [UIView alloc] init...
[motionView setContentView:myView];
  • Add to your view
[self.view addSubview:motionView];
  • Additionally, if you need to disable motion
[motionView setMotionEnabled:NO];
  • Full example:
CRMotionView *motionView = [[CRMotionView alloc] initWithFrame:self.view.bounds];
[motionView setImage:[UIImage imageNamed:@"Image"]];
[self.view addSubview:motionView];

Example

CRMotionView-demo1
CRMotionView-demo2
CRMotionView-demo3

Requirements

  • iOS 6.0 or higher
  • ARC
  • Core Motion

Bugs

  • UIScrollView's scroll bar indicator align not handled correctly in some cases.
  • Device landscape orientation (Both, iPhone and iPad).

Contributing

Anyone who would like to contribute to the project is more than welcome.

  • Fork this repo
  • Make your changes
  • Submit a pull request

License

CRMotionView is released under the MIT license. See LICENSE.

Contact

Christian Roman

http://chroman.me

[email protected]

@chroman

crmotionview's People

Contributors

christianroman avatar 942v avatar gscalzo avatar tulushev avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.