Android:像iphone一样的卷页效果
我想创建半页卷曲动画效果,如图所示:
我使用了 https://github.com/harism/android_page_curl/ ,但它会翻整页。我只想要半页卷曲效果,如图所示。
I want to create half page curl animation effect as shown in image:
I've used code from https://github.com/harism/android_page_curl/ , but it turns whole page. I just only want half page curl effect as shown in image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试修改我的实现。它不是 3D,而是使用普通画布的良好 2D 模拟:http://code.google .com/p/android-page-curl/
如果您启用调试模式,您将看到它是如何工作的,并且修改卷曲平面应该很容易。
You could try to modify my implementation. It's not 3D but a nice 2D simulation using the plain canvas: http://code.google.com/p/android-page-curl/
If you enbale the debug mode you will see how it works and modifying the curl plane should be easy.
只需更改 CurlRenderer 类中 updatePageRects() 方法的部分代码即可:
It is enough to change part of code at updatePageRects() method in CurlRenderer class: