aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/css/keyframe.css
blob: 70dab4417764f2a0c3616af9ad72e677be3d708b (plain)
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
@-webkit-keyframes bgcolor {
	0% {
		background-color: #ffccf2;
	}
	100% {
		background-color: #ccffff;
	}
}
@-moz-keyframes bgcolor {
	from {
		background-color: #ffccf2;
	}
	to {
		background-color: #ccffff;
	}
}
@-ms-keyframes bgcolor {
	from {
		background-color: #ffccf2;
	}
	100% {
		background-color: #ccffff;
	}
}
@keyframes bgcolor {
	0% {
		background-color: #ffccf2;
	}
	to {
		background-color: #ccffff;
	}
}

@keyframes mymove {
	from { top: 0px; }
	to { top: 200px; }
	50% { top: 100px; }
}