1#
2# Show customizing the circular scrolling animation of a label with `LV_LABEL_LONG_SCROLL_CIRCULAR` long mode.
3#
4
5label1 = lv.label(lv.scr_act())
6label1.set_long_mode(lv.label.LONG.SCROLL_CIRCULAR)         # Circular scroll
7label1.set_width(150)
8label1.set_text("It is a circularly scrolling text. ")
9label1.align(lv.ALIGN.CENTER, 0, 40)
10
11