vue-grid-layout icon indicating copy to clipboard operation
vue-grid-layout copied to clipboard

No initial transitions

Open Aljodomo opened this issue 4 years ago • 1 comments

Describe the solution you'd like When loading the grid, every item is transitioning from the top left to its real position. It would be perfect if the elements appear in their final position.

Describe alternatives you've considered I tried to hide all items until the transitions are finished but that is a horrible solution.

Any tips for me to implement that? I am new to vue and js development but I am trying my best :)

Aljodomo avatar Oct 02 '20 15:10 Aljodomo

You can cancel the transitions by overriding these CSS rules:

.vue-grid-item {
  -webkit-transition: unset !important;
  transition: unset !important;
  -webkit-transition-property: unset !important;
  transition-property: unset !important;
}

halfpastfouram avatar Apr 01 '21 22:04 halfpastfouram