创建卡拉 OK 效果 Flutter

发布于 2025-01-12 00:02:23 字数 183 浏览 0 评论 0原文

我要开始颤振了。有谁知道如何在图像上做出效果吗?

卡拉 OK 效果

卡拉OK效果

I'm starting Flutter. Does anyone know how to make the effect on image?

Karaoke Effect

Karaoke Effect

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

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

发布评论

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

评论(2

相思碎 2025-01-19 00:02:23

您可以使用animated_text_kit包

https://pub.dev/packages/animated_text_kit

you can use animated_text_kit package

https://pub.dev/packages/animated_text_kit

有木有妳兜一样 2025-01-19 00:02:23

使用Stack 将红色Text 层放置在白色Text 层之上。然后使用ClipRect慢慢显示顶层。

基本上:

Stack
[
  - ClipRect
    - Red Text
  - White Text
]

最困难的部分是“时间同步”,即知道流动的速度,因为在歌曲中,某些单词会比其他单词快得多。告诉我们您的时间同步计划,我可以进一步建议哪种类型的动画控制器最适合此任务。

Use a Stack to put a layer of red Text on top of a layer of white Text. And then use ClipRect to slowly show the top layer.

Basically:

Stack
[
  - ClipRect
    - Red Text
  - White Text
]

The most difficulty part is "time sync", i.e. to know the speed of the flow, because in a song, some words are gonna be much faster than other words. Tell us your plan of time sync, and I can further suggest which type of animation controller is best for this task.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文