8000 Fixed a few oversights from previous commit. · tinymachine/vuejs.org@af9abfb · GitHub
[go: up one dir, main page]

Skip to content

Commit af9abfb

Browse files
jamestrendachrisvfritz
authored andcommitted
Fixed a few oversights from previous commit.
Changed animation name referenced in the class declaration and carried previous CSS changes over to vendor-prefixed properties.
1 parent 6ff1d2c commit af9abfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/v2/guide/transitions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ new Vue({
212212
animation: bounce-in .5s;
213213
}
214214
.bounce-leave-active {
215-
animation: bounce-out .5s reverse;
215+
animation: bounce-in .5s reverse;
216216
}
217217
@keyframes bounce-in {
218218
0% {
@@ -241,7 +241,7 @@ new Vue({
241241
animation: bounce-in .5s;
242242
}
243243
.bounce-leave-active {
244-
-webkit-animation: bounce-out .5s;
244+
-webkit-animation: bounce-in .5s reverse;
245245
animation: bounce-in .5s reverse;
246246
}
247247
@keyframes bounce-in {

0 commit comments

Comments
 (0)
0