123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #import "SidebarFeedlyAnimation.h"
-
- @implementation SidebarFeedlyAnimation
-
- + (void)animateContentView:(UIView *)contentView sidebarView:(UIView *)sidebarView fromSide:(Side)side visibleWidth:(CGFloat)visibleWidth duration:(NSTimeInterval)animationDuration completion:(void (^)(BOOL))completion
- {
- [self resetSidebarPosition:sidebarView];
- [self resetContentPosition:contentView];
-
-
- CGRect sidebarFrame = sidebarView.frame;
- [sidebarView.superview bringSubviewToFront:sidebarView];
-
- if(side == LeftSide)
- {
- sidebarFrame.origin.x = -sidebarFrame.size.width;
- sidebarView.frame = sidebarFrame;
- sidebarFrame.origin.x += visibleWidth;
- }
- else
- {
- sidebarFrame.origin.x = sidebarFrame.size.width;
- sidebarView.frame = sidebarFrame;
- sidebarFrame.origin.x -= visibleWidth;
- }
-
- [UIView animateWithDuration:animationDuration
- delay:0.0
- options:UIViewAnimationOptionCurveEaseInOut
- animations:^{
- sidebarView.frame = sidebarFrame;
- contentView.alpha = 0.3;
- }
- completion:^(BOOL finished) {
- completion(finished);
- }];
- }
-
-
- + (void)reverseAnimateContentView:(UIView *)contentView sidebarView:(UIView *)sidebarView fromSide:(Side)side visibleWidth:(CGFloat)visibleWidth duration:(NSTimeInterval)animationDuration completion:(void (^)(BOOL))completion
- {
- CGRect sidebarFrame = sidebarView.frame;
-
- if(side == LeftSide)
- {
- sidebarFrame.origin.x -= visibleWidth;
- }
- else
- {
- sidebarFrame.origin.x += visibleWidth;
- }
-
- [UIView animateWithDuration:animationDuration
- delay:0.0
- options:UIViewAnimationOptionCurveEaseInOut
- animations:^{
- sidebarView.frame = sidebarFrame;
- contentView.alpha = 1;
- }
- completion:^(BOOL finished) {
- completion(finished);
- }];
- }
-
- @end
|