Vue-grid-layout: Option to disable animations

Created on 16 Feb 2018  路  1Comment  路  Source: jbaysolutions/vue-grid-layout

Terrific plug-in!

Is there a way to disable animations?
Because it's conflicting with my own stuff...

Thanks!

question

Most helpful comment

I think you can disable the css transitions like this:

.vue-grid-item {
  /* transition: all 200ms ease; */
  transition: none;
}

.vue-grid-layout {
  /* transition: height 200ms ease; */
  transition: none;
}

>All comments

I think you can disable the css transitions like this:

.vue-grid-item {
  /* transition: all 200ms ease; */
  transition: none;
}

.vue-grid-layout {
  /* transition: height 200ms ease; */
  transition: none;
}

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jovanmabilin picture jovanmabilin  路  6Comments

victory-v picture victory-v  路  7Comments

mateo2181 picture mateo2181  路  6Comments

kennethllamasares picture kennethllamasares  路  3Comments

shar0 picture shar0  路  8Comments