fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e98fa88985eacc9c5fa14fcfb44323ac58deca7c
[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
}