We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1bfc73 commit 8bcd5d4Copy full SHA for 8bcd5d4
styles.css
@@ -1,5 +1,7 @@
1
/*
2
-transform:skew()
+transition: change over time
3
+transition-property:
4
+transition-duration:
5
*/
6
7
div {
@@ -8,17 +10,20 @@ div {
8
10
display: inline-block;
9
11
}
12
13
+div:hover {
14
+ background: chartreuse;
15
+}
16
+
17
.one {
18
background: red;
- transform: skewX(20deg);
19
20
21
.two {
22
background: blue;
- transform: skewY(20deg);
23
+ transition-property: background;
24
+ transition-duration: 4s;
25
26
27
.three {
28
background: green;
- transform: skew(30deg, 30deg);
29
0 commit comments