Skip to content

Commit 6be2305

Browse files
author
Jonathan Hersh
committed
Merge pull request IFTTT#1580
2 parents b0aa74d + 6e6d3f0 commit 6be2305

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

JazzHands/IFTTTHideAnimation.m

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ @implementation IFTTTHideAnimation
1212

1313
+ (instancetype)animationWithView:(UIView *)view hideAt:(NSInteger)time
1414
{
15-
IFTTTHideAnimation *animation = [[[self class] alloc] initWithView: view
16-
hideAt: time];
15+
IFTTTHideAnimation *animation = [[[self class] alloc] initWithView:view
16+
hideAt:time];
1717
return animation;
1818
}
1919

2020
+ (instancetype)animationWithView:(UIView *)view showAt:(NSInteger)time
2121
{
22-
IFTTTHideAnimation *animation = [[[self class] alloc] initWithView: view
23-
showAt: time];
22+
IFTTTHideAnimation *animation = [[[self class] alloc] initWithView:view
23+
showAt:time];
2424
return animation;
2525
}
2626

README.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,15 @@ This will produce an effect where the view will be at 10,10 and sized 100x100 fo
7272

7373
Jazz Hands supports several types of animations:
7474

75-
+ **IFTTTFrameAnimation** moves and sizes views.
76-
+ **IFTTTAlphaAnimation** creates fade effects.
77-
+ **IFTTTCornerRadiusAnimation** animates the `layer.cornerRadius` of a view.
78-
+ **IFTTTHideAnimation** hides and shows views.
79-
+ **IFTTTAngleAnimation** for rotation effects.
80-
+ **IFTTTTransform3DAnimation** for 3D transforms.
81-
+ **IFTTTScaleAnimation** to scale view sizes.
82-
+ **IFTTTConstraintsAnimation** animates AutoLayout constraint constants.
75+
+ **IFTTTAlphaAnimation** animates the `alpha` property _(creates fade effects)_.
76+
+ **IFTTTAngleAnimation** animates a rotation transform _(for rotation effects)_.
77+
+ **IFTTTColorAnimation** animates the `backgroundColor` property.
78+
+ **IFTTTConstraintsAnimation** animates `AutoLayout` constraint constants.
79+
+ **IFTTTCornerRadiusAnimation** animates the `layer.cornerRadius` property.
80+
+ **IFTTTFrameAnimation** animates the `frame` property _(moves and sizes views)_.
81+
+ **IFTTTHideAnimation** animates the `hidden` property _(hides and shows views)_.
82+
+ **IFTTTScaleAnimation** animates the applies a scaling transform _(to scale view sizes)_.
83+
+ **IFTTTTransform3DAnimation** animates the `layer.transform` property _(for 3D transforms)_.
8384

8485
##More Examples
8586

0 commit comments

Comments
 (0)