replace last placeholders from old manipulation system
This commit is contained in:
parent
96466c203b
commit
38a8e43300
3 changed files with 8 additions and 4 deletions
|
@ -163,8 +163,8 @@
|
|||
width="166" />
|
||||
</g>
|
||||
<g
|
||||
style="opacity:%opacity"
|
||||
id="g3849">
|
||||
style="opacity:1"
|
||||
id="banderole">
|
||||
<rect
|
||||
id="rect_banderole"
|
||||
width="1024"
|
||||
|
@ -216,7 +216,7 @@
|
|||
</g>
|
||||
<image
|
||||
style="opacity:1"
|
||||
id="lizenz"
|
||||
id="license"
|
||||
y="950"
|
||||
x="890"
|
||||
width="120"
|
||||
|
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
|
@ -273,7 +273,7 @@
|
|||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;opacity:%opacityBox"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:80.00000119%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;opacity:1"
|
||||
x="149.25279"
|
||||
y="789.14288"
|
||||
id="text2992-5-5-3"
|
||||
|
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 9.6 KiB |
|
@ -108,6 +108,7 @@ def vorspannFrames():
|
|||
for i in range(0, frames):
|
||||
yield (
|
||||
('box', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)),
|
||||
('url', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)),
|
||||
('text1', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)),
|
||||
('text2', 'opacity', 0)
|
||||
)
|
||||
|
@ -117,6 +118,7 @@ def vorspannFrames():
|
|||
for i in range(0, frames):
|
||||
yield {
|
||||
('box', 'opacity', 1),
|
||||
('url', 'opacity', 1),
|
||||
('text1', 'opacity', "%.2f" % (1-(float(i)/frames))),
|
||||
('text2', 'opacity', 0)
|
||||
}
|
||||
|
@ -126,6 +128,7 @@ def vorspannFrames():
|
|||
for i in range(0, frames):
|
||||
yield {
|
||||
('box', 'opacity', 1),
|
||||
('url', 'opacity', 1),
|
||||
('text1', 'opacity', 0),
|
||||
('text2', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames))
|
||||
}
|
||||
|
@ -135,6 +138,7 @@ def vorspannFrames():
|
|||
for i in range(0, frames):
|
||||
yield {
|
||||
('box', 'opacity', 1),
|
||||
('url', 'opacity', 1),
|
||||
('text1', 'opacity', 0),
|
||||
('text2', 'opacity', 1)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue