fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
assigning ids
[librarian.git]
/
src
/
librarian
/
elements
/
figures
/
animacja.py
1
from ..base import WLElement
2
3
4
class Animacja(WLElement):
5
SHOULD_HAVE_ID = True
6
7
HTML_TAG = 'div'
8
HTML_CLASS = "animacja cycle-slideshow"
9
HTML_ATTR = {
10
"data-cycle-pause-on-hover": "true",
11
"data-cycle-next": "> img",
12
"data-cycle-fx": "fadeout",
13
"data-cycle-paused": "true",
14
}