使用ZYNQ芯片和LVGL框架实现用户高刷新UI设计系列教程(第四十讲)

Lottie是一种用于在应用中显示动画的格式,lvgl lottie控件运行在lvgl项目中使用lottie动画。

以下是在GUI-Guider中的使用:

1.依赖

在网上下载有关lottie格式的文件例如".json",然后在lv_conf.h中启用lottie支持

#define LV_USE_Lottie 1

2.使用

1\]从文件中使用rlottie 要从文件使用创建 Lottie 动画: lv_obj_t \* lottie = lv_rlottie_create_from_file(parent, width, height, "path/to/lottie.json"); 请注意,Rlottie 使用标准的 STDIO C 文件 API,因此您可以使用 路径"通常",不需要特定于 LVGL 的驱动程序号。 \[2\]从原始字符串数据使用rlottie lv_example_rlottie_approve.c 包含 RAW 格式的示例动画格式。而不是存储 JSON 字符串,而是为原因如下: • 避免在 JSON 文件中转义字符 " • 某些编译器不支持很长的字符串 lvgl/scripts/filetohex.py 可用于将 Lottie 文件转换为十六进制数组。例如: ./filetohex.py path/to/lottie.json \> out.txt 要从原始数据创建动画: extern const uint8_t lottie_data\[\]; lv_obj_t\* lottie = lv_rlottie_create_from_raw(parent, width, height, (const char \*)lottie_data); 3.获取与控制 Lottie 是标准且流行的格式,因此您可以找到许多动画 Web 上的文件。例如:https://lottiefiles.com/ 。 LVGL 提供了两个功能来控制动画模式:lv_rlottie_set_play_mode() 和 lv_rlottie_set_current_frame() 。 在调用第一种方法时,您将结合您的意图,例如 这些示例: lv_obj_t \* lottie = lv_rlottie_create_from_file(scr, 128, 128, "test.json"); lv_obj_center(lottie); // Pause to a specific frame lv_rlottie_set_current_frame(lottie, 50); lv_rlottie_set_play_mode(lottie, LV_RLOTTIE_CTRL_PAUSE); // The specified frame will be displayed and then the animation will pause // Play backward and loop lv_rlottie_set_play_mode(lottie, LV_RLOTTIE_CTRL_PLAY \| LV_RLOTTIE_CTRL_BACKWARD \| LV_RLOTTIE_CTRL_LOOP); // Play forward once (no looping) lv_rlottie_set_play_mode(lottie, LV_RLOTTIE_CTRL_PLAY \| LV_RLOTTIE_CTRL_FORWARD); 默认动画模式是 循环向前播放 。 如果不启用循环,则在 LV_EVENT_READY 没有循环,动画就无法取得更大的进步。 为了获得动画中的帧数或当前帧索引,可以将 lv_obj_t 实例强制转换为 :c:struct:` lv_rlottie_t` 实例并检查 current_frame 和 total_frames 成员。 本文章由威三学社出品 对课程感兴趣可以私信联系

相关推荐
修炼前端秘籍的小帅12 天前
Stitch——Google热门的免费AI UI设计工具
前端·人工智能·ui
王码码203512 天前
Flutter for OpenHarmony:socket_io_client 实时通信的事实标准(Node.js 后端的最佳拍档) 深度解析与鸿蒙适配指南
android·flutter·ui·华为·node.js·harmonyos
2501_9219308313 天前
Flutter for OpenHarmony:第三方库实战 chewie 视频播放器UI组件详解
flutter·ui
梵得儿SHI13 天前
Vue3 生态工具实战宝典:UI 组件库 + 表单验证全解析(Element Plus/Ant Design Vue/VeeValidate)
前端·vue.js·ui·elementplus·vue性能优化·antdesignvue·表单验证方案
Unity游戏资源学习屋13 天前
【Unity UI资源包】GUI Pro - Casual Game 专为休闲手游打造的专业级UI资源包
ui·unity
麻瓜呀14 天前
vue2 Element-ui框架相关常见问题-表单组件重置显示异常
运维·服务器·ui
少云清14 天前
【UI自动化测试】4_PO模式 _PO模式封装
ui·po模式
菜鸟小芯14 天前
【GLM-5 陪练式创意 UI 实战】第二篇:创意魔法盒 —— 从 “开心” 到 “科技感”,AI 驱动的 UI 风格迭代
科技·ui