• 支付宝五福实现 核心代码


    //准备开始布局

    - (void)prepareLayout {}

    //返回的是决定cell样式的数组

    - (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {    

        NSArray * attributes =  [super layoutAttributesForElementsInRect:rect];

        //计算中心点的contentOffset

        CGFloat centerX = self.collectionView.contentOffset.x + self.collectionView.bounds.size.width * 0.5;

        //获取每一个cell的布局属性

        for (UICollectionViewLayoutAttributes * attri in attributes) {

            //计算每一个cell中心与中心点的contentOffset距离

            CGFloat delat = ABS(attri.center.x - centerX);

           

            //计算比例

            CGFloat scales = 1 - delat / (self.collectionView.bounds.size.width);

            

            attri.transform = CGAffineTransformMakeScale(scales, scales);

        }   

        return attributes;

    }

    //实时刷新

    - (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {

        return YES;

    }

    //targetContentOffset 调整后的contentOffset

    //proposedContentOffset 滑动停止的contentOffset

    - (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity {

        

        // 计算最终的可见范围

        CGRect rect;

        rect.origin = proposedContentOffset;

        rect.size = self.collectionView.frame.size;

        

        // 取得cell的布局属性

        NSArray * attributes = [super layoutAttributesForElementsInRect:rect];

        

        CGFloat centerX = proposedContentOffset.x + self.collectionView.bounds.size.width * 0.5;

        

        //获取最小间距

        CGFloat minDetal = MAXFLOAT;

        

        for (UICollectionViewLayoutAttributes *attrs in attributes) {

            

            if (ABS(minDetal) > ABS(attrs.center.x - centerX)) {

                minDetal = attrs.center.x - centerX;

            }

        }

        // 在原有offset的基础上进行微调

        return CGPointMake(proposedContentOffset.x + minDetal, proposedContentOffset.y);

    }

  • 相关阅读:
    GAN对抗神经网络(原理解析)
    Wasserstein distance(EM距离)
    浅谈KL散度
    深度学习中 Batch Normalization是什么
    Batch Normalization的正确打开方式
    对于梯度消失和梯度爆炸的理解
    [转贴]loadrunner 场景设计-添加Unix、Linux Resources计数器
    Volley(四)—— ImageLoader & NetworkImageView
    SQL单表查询
    ifconfig命令详解
  • 原文地址:https://www.cnblogs.com/PSSSCode/p/5272046.html
Copyright © 2020-2023  润新知