replace last placeholders from old manipulation system

This commit is contained in:
MaZderMind 2014-04-09 22:59:48 +02:00
parent 96466c203b
commit 38a8e43300
3 changed files with 8 additions and 4 deletions

View file

@ -163,8 +163,8 @@
width="166" /> width="166" />
</g> </g>
<g <g
style="opacity:%opacity" style="opacity:1"
id="g3849"> id="banderole">
<rect <rect
id="rect_banderole" id="rect_banderole"
width="1024" width="1024"
@ -216,7 +216,7 @@
</g> </g>
<image <image
style="opacity:1" style="opacity:1"
id="lizenz" id="license"
y="950" y="950"
x="890" x="890"
width="120" width="120"

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

View file

@ -273,7 +273,7 @@
</g> </g>
<text <text
xml:space="preserve" 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" x="149.25279"
y="789.14288" y="789.14288"
id="text2992-5-5-3" id="text2992-5-5-3"

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

View file

@ -108,6 +108,7 @@ def vorspannFrames():
for i in range(0, frames): for i in range(0, frames):
yield ( yield (
('box', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)), ('box', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)),
('url', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)),
('text1', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)), ('text1', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)),
('text2', 'opacity', 0) ('text2', 'opacity', 0)
) )
@ -117,6 +118,7 @@ def vorspannFrames():
for i in range(0, frames): for i in range(0, frames):
yield { yield {
('box', 'opacity', 1), ('box', 'opacity', 1),
('url', 'opacity', 1),
('text1', 'opacity', "%.2f" % (1-(float(i)/frames))), ('text1', 'opacity', "%.2f" % (1-(float(i)/frames))),
('text2', 'opacity', 0) ('text2', 'opacity', 0)
} }
@ -126,6 +128,7 @@ def vorspannFrames():
for i in range(0, frames): for i in range(0, frames):
yield { yield {
('box', 'opacity', 1), ('box', 'opacity', 1),
('url', 'opacity', 1),
('text1', 'opacity', 0), ('text1', 'opacity', 0),
('text2', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames)) ('text2', 'opacity', "%.2f" % easeOutCubic(i, 0, 1, frames))
} }
@ -135,6 +138,7 @@ def vorspannFrames():
for i in range(0, frames): for i in range(0, frames):
yield { yield {
('box', 'opacity', 1), ('box', 'opacity', 1),
('url', 'opacity', 1),
('text1', 'opacity', 0), ('text1', 'opacity', 0),
('text2', 'opacity', 1) ('text2', 'opacity', 1)
} }