We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9d2a31 commit a0af69eCopy full SHA for a0af69e
1 file changed
7-animation/2-css-animations/article.md
@@ -168,7 +168,7 @@ The CSS `transition` is based on that curve:
168
.train {
169
left: 0;
170
transition: left 5s cubic-bezier(0, 0, 1, 1);
171
- /* onlick on a train sets left to 450px */
+ /* click on a train sets left to 450px, thus triggering the animation */
172
}
173
```
174
@@ -191,7 +191,7 @@ CSS:
191
192
193
transition: left 5s cubic-bezier(0, .5, .5, 1);
194
- /* JavaScript sets left to 450px */
195
196
197
0 commit comments