Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / elements / figures / animacja.py
1 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from ..base import WLElement
5
6
7 class Animacja(WLElement):
8     SHOULD_HAVE_ID = True
9
10     HTML_TAG = 'div'
11     HTML_CLASS = "animacja cycle-slideshow"
12     HTML_ATTR = {
13         "data-cycle-pause-on-hover": "true",
14         "data-cycle-next": "> img",
15         "data-cycle-fx": "fadeout",
16         "data-cycle-paused": "true",
17     }