开发者

How to implement an image scrolling mechanism that has magnification and transparency effects?

I want to implement a component like the one in the images below and I want to learn how it's done, but I couldn't search google to find a similar implementation because I couldn't know how to describe this (maybe because English is not my mother tongue).

Can you guys guide me into finding a similar implementation? I already found some coverflow libraries, but this 开发者_如何学编程isn't exactly a coverflow implementation. This one magnifies and changes the transparency of the images as the user scrolls.

Thx in advance

How to implement an image scrolling mechanism that has magnification and transparency effects?

How to implement an image scrolling mechanism that has magnification and transparency effects?


if i came to do this i will do like this

  1. add each image to each UIImageView

    2.

    [imageView1 setAlpha:0.3];

    [imageView1 setOpaque:NO];

    [imageView2 setAlpha:0.3];

    [imageView2 setOpaque:NO];

.........like this do for all of them

or simply put this code in function and pass uiimageview

3.then add all UIImageView objects to view from back.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜