Skip to content
Snippets Groups Projects
Commit 92f765bc authored by syuilo's avatar syuilo
Browse files

Update sequential-entrance.vue

parent 742889a0
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ export default Vue.extend({
<style lang="scss">
.staggered-move {
transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1) !important;
transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.uupnnhew[data-direction="up"] {
......@@ -65,7 +65,7 @@ export default Vue.extend({
.uupnnhew[data-reversed="true"] {
@for $i from 1 through 30 {
.staggered-enter-active:nth-last-child(#{$i}) {
transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1) (15ms * ($i - 1));
transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1) (15ms * ($i - 1)), opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1) (15ms * ($i - 1));
}
}
}
......@@ -73,7 +73,7 @@ export default Vue.extend({
.uupnnhew[data-reversed="false"] {
@for $i from 1 through 30 {
.staggered-enter-active:nth-child(#{$i}) {
transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1) (15ms * ($i - 1));
transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1) (15ms * ($i - 1)), opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1) (15ms * ($i - 1));
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment