仅具有核心动画的 FlipBoard

发布于 2024-10-14 21:54:39 字数 192 浏览 1 评论 0原文

我想通过仅使用核心动画而不是 OpenGL 来制作多个视图(不是图像而是 uiview)的翻转板。我看到了很多翻转的例子,但它们只涉及图像翻转和图像层的捕获。就像这里: https://github.com/brow/leaves 有人可以帮助我吗?

i would like to do a flipboard of many view (not image but uiview) by using only Core Animation, not OpenGL. i saw many exemple of flip but they involve only image flip and capture of image layer. like here: https://github.com/brow/leaves
some can help me please.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百变从容 2024-10-21 21:54:39

我发现了这个 名为 FlipView 的 Github 项目。它包含您可能不需要的布局工具,但页面翻转是使用 AFKPageFlipper 类。

要自己实现它:

  1. 将视图的图层内容复制到图像。 ([layer renderInContext:])
  2. 将图像的右侧添加到新图层的内容
  3. 将旋转 CATransform3D 变换添加到具有透视的图层。请参阅 核心动画指南中的清单 2 用于添加透视

I found this Github project called FlipView. It includes layout tools that you might not need, but the page flipping is implemented using Core Animation layers in the AFKPageFlipper class.

To implement it yourself:

  1. Copy the view's layer contents to an image. ([layer renderInContext:])
  2. Add the right side of the image to a new layer's contents.
  3. Add a rotation CATransform3D transform to the layer with perspective. See Listing 2 in the Core Animation Guide for adding perspective.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文