Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##iOS-Flip-Transform
## iOS-Flip-Transform

###Summary
### Summary
Animation component for the effect of flipping as in a news/clock ticker, or a page turn.

Structured around the idea of a data object (i.e. headline in news, number in a clock, page in a book) as an animation frame, comprised of multiple CALayers.
Expand All @@ -19,7 +19,7 @@ Supports different types of content:

--

###Usage
### Usage
1. Create delegate object -
`AnimationDelegate *animationDelegate = [[AnimationDelegate alloc] initWithSequenceType: directionType:];`

Expand All @@ -35,9 +35,9 @@ Supports different types of content:

Note: To remove jagged edges during flipping, set __Renders with edge antialiasing__ in the project plist to YES. This may decrease performance.

####Configurable Properties
#### Configurable Properties

#####Animation Delegate
##### Animation Delegate

- __repeatDelay__: Length of time to the next flip after the current flip completes (only for _auto interaction mode_)
- __shadow__: Whether or not to display shadow
Expand All @@ -47,7 +47,7 @@ Note: To remove jagged edges during flipping, set __Renders with edge antialiasi
- __perspectiveDepth__: Positive value for adjusting the perspective. Lower the value, greater the illusion of depth.
- __nextDuration__: duration of the next flip animation

#####FlipView
##### FlipView

- __textInset__: inset of text relative to the flip view, like border margin
- __textOffset__: positioning of text relative to top left of the flip view
Expand All @@ -59,12 +59,12 @@ Note: To remove jagged edges during flipping, set __Renders with edge antialiasi

--

###Feature Backlog
### Feature Backlog
1. More flexible and readable way of rearranging layers
2. Dynamically drawing layers only when they come into view
3. More realistic and less expensive lighting (specular reflection would be cool)

###Contributors
### Contributors
[xissburg](https://github.com/xissburg)

--
Expand Down