iCarousel icon indicating copy to clipboard operation
iCarousel copied to clipboard

Make only center view highlighted other nearest view dark

Open BrishenXu opened this issue 8 years ago • 1 comments

This is not an issue, but a request for help

I want except for the middle view, the other have an dark mask layer and according to the offset gradient.How should i achieve it?

Thanks for you anyway.

BrishenXu avatar Feb 13 '17 05:02 BrishenXu

-(void)carouselDidScroll:(iCarousel *)carousel { for(UIView *view in carousel.visibleItemViews) { if(view == carousel.currentItemView) { view.alpha = 1 - (carousel.scrollOffset - carousel.currentItemIndex)>0.4?1 - (carousel.scrollOffset - carousel.currentItemIndex):1; } else { view.alpha = 0.4 + (carousel.scrollOffset - carousel.currentItemIndex)>0.4?0.4 + (carousel.scrollOffset - carousel.currentItemIndex):0.4; } } }

billxie1988 avatar Sep 08 '17 07:09 billxie1988