diff --git a/src/styles/transition.scss b/src/styles/transition.scss index 4cb27cc8..36ca5d14 100644 --- a/src/styles/transition.scss +++ b/src/styles/transition.scss @@ -3,6 +3,7 @@ /* fade */ .fade-enter-active, .fade-leave-active { + will-change: opacity; transition: opacity 0.28s; } @@ -14,6 +15,7 @@ /* fade-transform */ .fade-transform-leave-active, .fade-transform-enter-active { + will-change: opacity, transform; transition: all .5s; } @@ -30,6 +32,7 @@ /* breadcrumb transition */ .breadcrumb-enter-active, .breadcrumb-leave-active { + will-change: opacity, transform; transition: all .5s; } @@ -40,6 +43,7 @@ } .breadcrumb-move { + will-change: opacity, transform; transition: all .5s; }