-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPart6.1.css
More file actions
51 lines (47 loc) · 949 Bytes
/
Part6.1.css
File metadata and controls
51 lines (47 loc) · 949 Bytes
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
.Nya{
height: 100px;
width: 300px;
background-color: pink;
animation-name: widthAnimate;
animation-duration: 3 s;
animation-timing-function: ease-in;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: normal;
/* animation: widthAnimate 2s ease-in 0s infinte normal ; */
}
@keyframes widthAnimate{
0%{
width: 10px;
font-size: 20px;
background-color: green;
}
50%{
width: 400px;
font-size:40px;
background-color: blue;
border-radius: 15px;
}
100%{
width: 600px;
font-size:60px;
background-color: pink;
border-radius: 30px;
}
}
/*@keyframes fontAnimation {
from {
font-size: 20px;
}
to{
font-size:40px;
}
}
@keyframes colorAnimate {
from{
background-color: green;
}
to{
background-color: blue;
}
}*/