Lines Matching full:at
78 You can apply multiple different animations on the same variable at the same time.
87 - `lv_anim_path_step` change in one step at the end
88 - `lv_anim_path_ease_in` slow at the beginning
89 - `lv_anim_path_ease_out` slow at the end
90 - `lv_anim_path_ease_in_out` slow at the beginning and end
112 Thirdly, add animation elements to the animation timeline by calling `lv_anim_timeline_add(at, star…
114 Finally, call `lv_anim_timeline_start(at)` to start the animation timeline.
116 …backward playback of the entire animation group, using `lv_anim_timeline_set_reverse(at, reverse)`.
118 Call `lv_anim_timeline_stop(at)` to stop the animation timeline.
120 Call `lv_anim_timeline_set_progress(at, progress)` function to set the state of the object correspo…
122 Call `lv_anim_timeline_get_playtime(at)` function to get the total duration of the entire animation…
124 Call `lv_anim_timeline_get_reverse(at)` function to get whether to reverse the animation timeline.
126 Call `lv_anim_timeline_del(at)` function to delete the animation timeline.