Experimental class-based conversion now working for TXT and HTML.
[librarian.git] / src / librarian / elements / figures / animacja.py
1 from ..base import WLElement
2
3
4 class Animacja(WLElement):
5     HTML_TAG = 'div'
6     HTML_CLASS = "animacja cycle-slideshow"
7     HTML_ATTR = {
8         "data-cycle-pause-on-hover": "true",
9         "data-cycle-next": "> img",
10         "data-cycle-fx": "fadeout",
11         "data-cycle-paused": "true",
12     }