Advertisement
Guest User

Includes_Animations.xml

a guest
Aug 10th, 2015
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.21 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <includes>
  3.     <include name="Window_OpenClose_Animation">
  4.         <animation effect="slide" tween="cubic" time="720" start="0,1080" end="0,0" condition="Window.Previous(home)">WindowOpen</animation>
  5.         <animation effect="slide" tween="cubic" time="720" end="0,1080" start="0,0" condition="Window.Next(home)">WindowClose</animation>
  6.     </include>
  7.     <include name="dialogeffect">
  8.         <animation type="WindowOpen" reversible="false">
  9.             <effect type="zoom" start="150" end="100" center="960,540" time="300" tween="cubic" easing="out" />
  10.             <effect type="fade" end="100" time="150" />
  11.         </animation>
  12.         <animation type="WindowClose" reversible="false">
  13.             <effect type="fade" start="100" end="0" time="100" delay="100" />
  14.             <effect type="zoom" start="100" end="130" center="960,540" time="200" tween="cubic" easing="in" />
  15.         </animation>
  16.     </include>
  17.     <include name="VisibleFadeEffect">
  18.         <animation effect="fade" time="300">Visible</animation>
  19.         <animation effect="fade" time="300">Hidden</animation>
  20.     </include>
  21.     <include name="SettingsFadeEffect">
  22.         <animation effect="fade" time="100" delay="200">Visible</animation>
  23.         <animation effect="fade" time="50">Hidden</animation>
  24.     </include>
  25.     <include name="WindowSettingsFadeEffect">
  26.         <animation effect="fade" time="100" delay="200">WindowOpen</animation>
  27.         <animation effect="fade" time="50">WindowClose</animation>
  28.     </include>
  29.     <include name="ViewAnimation">
  30.         <animation effect="slide" tween="cubic" time="720" start="0,1080" end="0,0">VisibleChange</animation>
  31.     </include>
  32.     <include name="WindowASViewAnimation">
  33.         <animation effect="slide" tween="cubic" time="720" start="0,1080" end="0,0">WindowOpen</animation>
  34.         <animation effect="slide" tween="cubic" time="720" end="0,1080" start="0,0">WindowClose</animation>
  35.     </include>
  36.     <include name="Animation_DialogPopup">
  37.         <animation type="WindowOpen" reversible="false">
  38.             <effect type="slide" start="0,-196" end="0" tween="cubic" easing="inout" time="400" />
  39.         </animation>
  40.         <animation type="WindowClose" reversible="false">
  41.             <effect type="slide" end="0,-196" start="0" tween="cubic" easing="inout" time="400" />
  42.         </animation>
  43.     </include>
  44.     <include name="SubMenuAnimation">
  45.         <animation effect="slide" end="0,-90" time="300" tween="cubic" easing="inout" condition="!ControlGroup(9001).HasFocus() + Skin.HasSetting(Detach.RSS)">conditional</animation>
  46.         <animation effect="fade" start="100" end="0" time="300" condition="!ControlGroup(9001).HasFocus() + Skin.HasSetting(Detach.RSS)">conditional</animation>
  47.     </include>
  48.     <include name="InfoPanelDelayAnimation">
  49.         <visible>![Container.OnNext | Container.OnPrevious]</visible>
  50.         <animation effect="fade" end="100" time="120" delay="2000" condition="StringCompare(Skin.String(InfoPanel.Delay),2)">Visible</animation>
  51.         <animation effect="fade" end="100" time="120" delay="3000" condition="StringCompare(Skin.String(InfoPanel.Delay),3)">Visible</animation>
  52.         <animation effect="fade" end="100" time="120" delay="4000" condition="StringCompare(Skin.String(InfoPanel.Delay),4)">Visible</animation>
  53.         <animation effect="fade" end="100" time="120" delay="5000" condition="StringCompare(Skin.String(InfoPanel.Delay),5)">Visible</animation>
  54.     </include>
  55. </includes>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement