iOS Parallax Scrolling effect (like in Yahoo News Digest app)

后端 未结 4 1257
时光说笑
时光说笑 2021-01-30 18:26

I would like to know how to implement parallax scrolling similar to Yahoo News Digest app. In which when user scroll horizontally background image scrolls in a different speed w

4条回答
  •  粉色の甜心
    2021-01-30 19:11

    100% working and dam easy

    Take a view on imageview exactly size of image view. by default alpha for view set 0.

    //MARK: Scroll View Delegate methods
    -(void)scrollViewDidScroll:(UIScrollView *)scrollView{
    
      NSLog(@"X: %f Y: %f",scrollView.contentOffset.x,scrollView.contentOffset.y);
    
    CGFloat scrollY = _mainScrollView.contentOffset.y;
    CGFloat height = _alphaView.frame.size.height;
    
    CGFloat alphaMonitor = scrollY/height;
    
    _alphaView.alpha = alphaMonitor;
    }
    

提交回复
热议问题