• 翻页效果


    翻页效果

    效果

    说明

    修正以前源码的不妥之处。

    源码

    https://github.com/YouXianMing/Animations

    //
    //  PageFlipEffectController.m
    //  Animations
    //
    //  Created by YouXianMing on 16/1/6.
    //  Copyright © 2016年 YouXianMing. All rights reserved.
    //
    
    #import "PageFlipEffectController.h"
    #import "Math.h"
    #import "WxHxD.h"
    #import "CALayer+SetRect.h"
    #import "UIView+SetRect.h"
    
    @interface PageFlipEffectController ()
    
    @property (nonatomic, strong) CALayer *layer;
    @property (nonatomic, strong) Math    *math;
    
    @end
    
    @implementation PageFlipEffectController
    
    - (void)setup {
    
        [super setup];
        
        // layer
        _layer               = [CALayer layer];
        _layer.anchorPoint   = CGPointMake(1.f, 0.5f);
        _layer.frame         = CGRectMake(0, 0, Width / 2.f, 300);
        _layer.x             = 0;
        _layer.position      = CGPointMake(Width / 2.f, self.contentView.middleY);
        _layer.contents      = (__bridge id)([UIImage imageNamed:@"pic_1"].CGImage);
        _layer.borderColor   = [UIColor blackColor].CGColor;
        _layer.borderWidth   = 4.f;
        _layer.masksToBounds = YES;
        _layer.transform = CATransform3DMakeRotation([Math radianFromDegree:0], 0.0, 1.0, 0.0);
        [self.contentView.layer addSublayer:_layer];
        
        // 一元一次方程求解
        self.math = [Math mathOnceLinearEquationWithPointA:MATHPointMake(0, 0) PointB:MATHPointMake(Width, 180)];
        
        // 手势
        UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
        [self.view addGestureRecognizer:pan];
    }
    
    - (void)handlePan:(UIPanGestureRecognizer *)sender {
        
        CGPoint curPoint = [sender locationInView:self.view];
        CGFloat x        = curPoint.x;
        
        // 初始化3D变换,获取默认值
        CATransform3D perspectiveTransform = CATransform3DIdentity;
        
        // 透视
        perspectiveTransform.m34 = -1.0 / 2000.0;
        
        // 空间旋转
        perspectiveTransform = CATransform3DRotate(perspectiveTransform, [Math radianFromDegree: x * self.math.k], 0, 1, 0);
        
        [CATransaction setDisableActions:YES];
        _layer.transform = perspectiveTransform;
        
        if (x >= Width / 2.f) {
            
            [CATransaction setDisableActions:YES];
            _layer.contents = (__bridge id)([UIImage imageNamed:@"pic_2"].CGImage);
            
        } else {
            
            [CATransaction setDisableActions:YES];
            _layer.contents = (__bridge id)([UIImage imageNamed:@"pic_1"].CGImage);
        }
    }
    
    @end

    细节

  • 相关阅读:
    极简风格网络消息以及分发架构
    GPS网络时间服务器是如何让集成系统协调工作的?
    北斗授时设备(NTP时间服务器)对高速联网收费的重要性
    卫星互联网路由技术现状及展望
    【Python】获取中国法定节假日的封装
    GCC 内联汇编基础
    MIT6.828——Lab1 partB(麻省理工操作系统课程实验)
    MIT6.828——Lab1 partA(麻省理工操作系统课程实验)
    bochs(2.6.11)配置安装
    MIT6.828(Step0)——实验环境配置
  • 原文地址:https://www.cnblogs.com/YouXianMing/p/5107361.html
Copyright © 2020-2023  润新知