-
Notifications
You must be signed in to change notification settings - Fork 14
/
animations.txt
148 lines (139 loc) · 4.67 KB
/
animations.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<Image x:Key="Logo.Spinning" Name="Spinner">
<Image.Source>
<DrawingImage Drawing="{StaticResource Logo}"/>
</Image.Source>
<Image.Styles>
<Style Selector="Image#Spinner">
<Style.Animations>
<Animation Duration="0:0:1" IterationCount="Infinite">
<KeyFrame Cue="100%">
<Setter Property="RotateTransform.Angle" Value="360"/>
</KeyFrame>
</Animation>
</Style.Animations>
</Style>
</Image.Styles>
</Image>
<Grid x:Key="Logo.Advanced">
<!--eye-->
<Image Name="Eye">
<Image.Source>
<DrawingImage>
<GeometryDrawing Brush="{StaticResource ThemePanoptesBrush2}" Geometry="F0 M10,10z M0,0z M6.52709,5.85596L4.13392,6.51986 3.46716,4.12098 5.86033,3.45708z"/>
</DrawingImage>
</Image.Source>
<Image.Styles>
<Style Selector="Image#Eye">
<Style.Animations>
<Animation Duration="0:0:2" IterationCount="Infinite" PlaybackDirection="Alternate">
<KeyFrame Cue="0%">
<Setter Property="Opacity" Value="0.2"/>
</KeyFrame>
<KeyFrame Cue="100%">
<Setter Property="Opacity" Value="1.0"/>
</KeyFrame>
</Animation>
</Style.Animations>
</Style>
</Image.Styles>
</Image>
<!--left-->
<Image Name="Left">
<Image.Source>
<DrawingImage>
<GeometryDrawing Brush="{StaticResource ThemePanoptesBrush}" Geometry="F0 M10,10z M0,0z M2.64722,2.35488L3.83861,6.61306 2.09777,7.09595 0,5z"/>
</DrawingImage>
</Image.Source>
<Image.Styles>
<Style Selector="Image#Left">
<Style.Animations>
<Animation Duration="0:0:1" IterationCount="Infinite" PlaybackDirection="Alternate">
<KeyFrame Cue="0%">
<Setter Property="Opacity" Value="0.2"/>
</KeyFrame>
<KeyFrame Cue="100%">
<Setter Property="Opacity" Value="1.0"/>
</KeyFrame>
</Animation>
</Style.Animations>
</Style>
</Image.Styles>
</Image>
<!--bottom-->
<Image Name="Bottom">
<Image.Source>
<DrawingImage>
<GeometryDrawing Brush="{StaticResource ThemePanoptesBrush}" Geometry="F0 M10,10z M0,0z M2.34413,7.35036L6.61083,6.16437 7.09546,7.90223 5,10z"/>
</DrawingImage>
</Image.Source>
<Image.Styles>
<Style Selector="Image#Bottom">
<Style.Animations>
<Animation Delay="0:0:1" Duration="0:0:1" IterationCount="Infinite" PlaybackDirection="Alternate">
<KeyFrame Cue="0%">
<Setter Property="Opacity" Value="0.2"/>
</KeyFrame>
<KeyFrame Cue="100%">
<Setter Property="Opacity" Value="1.0"/>
</KeyFrame>
</Animation>
</Style.Animations>
</Style>
</Image.Styles>
</Image>
<!--right-->
<Image Name="Right">
<Image.Source>
<DrawingImage>
<GeometryDrawing Brush="{StaticResource ThemePanoptesBrush}" Geometry="F0 M10,10z M0,0z M7.34663,7.65128L6.16120,3.38637 7.90049,2.90214 10,5z"/>
</DrawingImage>
</Image.Source>
<Image.Styles>
<Style Selector="Image#Right">
<Style.Animations>
<Animation Duration="0:0:1" IterationCount="Infinite" PlaybackDirection="Alternate">
<KeyFrame Cue="0%">
<Setter Property="Opacity" Value="0.2"/>
</KeyFrame>
<KeyFrame Cue="100%">
<Setter Property="Opacity" Value="1.0"/>
</KeyFrame>
</Animation>
</Style.Animations>
</Style>
</Image.Styles>
</Image>
<!--top-->
<Image Name="Top">
<Image.Source>
<DrawingImage>
<GeometryDrawing Brush="{StaticResource ThemePanoptesBrush}" Geometry="F0 M10,10z M0,0z M7.64933,2.65118L3.38705,3.83371 2.90261,2.09143 5,0z"/>
</DrawingImage>
</Image.Source>
<Image.Styles>
<Style Selector="Image#Top">
<Style.Animations>
<Animation Delay="0:0:1" Duration="0:0:1" IterationCount="Infinite" PlaybackDirection="Alternate">
<KeyFrame Cue="0%">
<Setter Property="Opacity" Value="0.2"/>
</KeyFrame>
<KeyFrame Cue="100%">
<Setter Property="Opacity" Value="1.0"/>
</KeyFrame>
</Animation>
</Style.Animations>
</Style>
</Image.Styles>
</Image>
</Grid>
<!--On mouse over animation-->
<Style Selector="DrawingPresenter.Opacity:pointerover">
<Style.Animations>
<Animation Duration="0:0:1.5" Easing="SineEaseInOut" PlaybackDirection="Alternate">
<KeyFrame Cue="50%">
<Setter Property="ScaleTransform.ScaleX" Value="-0.5"/>
<Setter Property="ScaleTransform.ScaleY" Value="0.5"/>
</KeyFrame>
</Animation>
</Style.Animations>
</Style>