Imported Upstream version 1.7.1
[platform/upstream/edje.git] / src / examples / animations2.edc
1 collections {
2    group {
3       name: "animation_group";
4       max: 700 700;
5       min: 700 700;
6      images{
7          image: "bubble.png" COMP;
8      }
9     parts{
10               part{
11                    name: "part_bubble";
12                    type: IMAGE;
13                    description{
14                        state: "default" 0.0;
15                        max: 63 63;
16                        min: 63 63;
17                        image{
18                             normal: "bubble.png";
19                        }
20                        rel1.relative: 0.0 0.0;
21                        rel2.relative: 0.0 0.0;
22                     }
23                     description {
24                        state: "down-state" 1.0;
25                        inherit: "default" 0.0;
26                        rel1.relative: 0.0 1.0;
27                        rel2.relative: 0.0 0.0;
28                      }
29          }
30
31     }
32     programs{
33        program {
34          signal: "load";
35          source: "";
36          in: 0.5 0.0;
37          after: "animation,state1";
38        }
39        program {
40          name: "animation,state1";
41          source: "";
42          action: STATE_SET "down-state" 1.0;
43          target: "part_bubble";
44          transition: BOUNCE 2.5 0.0 5.0;
45       }
46     }
47    }
48 }