Swift实现3D轮播图效果

  override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {

  //集合视图的宽高(这里默认宽高相等)

  let itemHeight = self.collectionView?.frame.height ?? 0

  //可是视图内的attributes数组

  let array = super.layoutAttributesForElements(in: rect)

  //item透明度开始变化时的item的中心点x

  let centerX = self.collectionView!.contentOffset.x + itemHeight/2

  print(self.collectionView?.contentOffset.x ?? 0)

  for attributes in array! {

  //开始变化时的item的中心点x 与 实际中心点相比较

  let value = attributes.center.x - centerX

  let delta = abs(value)

  //设置缩放比例,此处4*itemHeight可根据缩放效果进行修改

  let scale = 1 - delta/(4*itemHeight)

  //设置缩放比例

  attributes.transform = CGAffineTransform.init(scaleX: scale, y: scale)

  //层次关系,设置此属性使item依次上下排列

  attributes.zIndex = Int(1 - abs(delta))

  //value<=0表示向左移动,最前面的item停止一段距离

  if value <= 0{

  //实际中心点与开始变化时的item的中心点小于等于设定的边界值

  if delta >= 0 && delta <= itemHeight

  {

  //item的中心点固定不变

  attributes.center.x = centerX

  //根据推进值,改变item的透明度,此处的delta>10是想让item有一个达到目标区域时有一个停顿效果而不是直接进入改变透明度的阶段

  attributes.alpha = (delta > 10) ? (1 - delta/(itemHeight/4)) : 1

  //设置缩放比例,停顿阶段不进行缩放

  attributes.transform = CGAffineTransform.init(scaleX: 1, y: 1)

  } else {

  //移动大于边界值,就是从停顿阶段到透明度改变,此处是下一个item上来,当前item透明度变为0

  attributes.alpha = 0

  }

  }

  }

  return array

  }