Kodi Community Forum
When there is extrafanart available for movies, - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: When there is extrafanart available for movies, (/showthread.php?tid=290492)



When there is extrafanart available for movies, - VikkiXavier - 2016-09-11

how do I get them to slide in & out instead of fade in & out? can anyone tell me please.


RE: When there is extrafanart available for movies, - Angelinas - 2016-09-11

I think that you can find solution for this.
I try to find condition for triger to start animation when images change (after 6 sec)...Didn have succes Sad

Maybe you have more luck.All you need is to find good timing.
Code:
    <default type="multiimage">
    <left>0</left>
    <top>0</top>
    <width>1920</width>
    <height>1080</height>
    <timeperimage>6000</timeperimage>
    <randomize>true</randomize>
    <include condition="Skin.HasSetting(keepaspect)">KeepAspect</include>
    <fadetime>FanartCrossFadeTime</fadetime>
    <animation effect="zoom" start="110" end="130" center="auto" time="10000" tween="cubic" easing="inout" pulse="true" condition="Container.Content(movies)">Conditional</animation>
    <animation effect="slide" start="-15,-15" end="15,15" time="5000" tween="cubic" easing="inout" pulse="true" condition="Container.Content(movies)">Conditional</animation>
    <animation effect="zoom" start="110" end="130" center="auto" time="10000" tween="cubic" easing="inout" pulse="true" condition="Container.Content(movies)">Conditional</animation>
    <animation effect="slide" start="-15,-15" end="15,15" time="5000" tween="cubic" easing="inout" pulse="true" condition="Container.Content(movies)">Conditional</animation>
    </default>
put this code in default.xml
Be cerful need to add proper condition,or this effect will be for all "multiimage" in skin.I put this only for movies,just to show you how to continue till find solution.
Container.Content(movies)+Some new condition Smile

edit:This is zoom efect for multi image , same is for image Wink