Kodi Community Forum

Full Version: Slideout CDArt when Player is Paused
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Try to Slide out the (rotating) CDArt when Player is Paused.

did try this:
PHP Code:
                <animation effect="slide" start="-177" end="0" time="900" tween="cubic" easing="out" delay="1000">WindowOpen</animation>  
                <
animation type="Conditional">
                    <
effect type="slide" start="0" end="-171" time="800" tween="cubic" easing="in" delay="0"/>
                    <!--
effect type="fade" start="100" end="0" time="1300"/-->
                    <
condition type="Player.Paused"/>
                </
animation>
                <
animation effect="slide" start="0" end="-177" time="900" tween="cubic" easing="out" delay="1000">WindowClose</animation
but sadly it doesnt work.

mfG.
Code:
<animation type="Conditional" condition="Player.Paused">
    <effect type="slide" start="0" end="-171" time="800" tween="cubic" easing="in" delay="0"/>
    <effect type="fade" start="100" end="0" time="1300"/>
</animation>