animate

задает анимацию для смены ячеек

boolean|object animate;

Example

webix.ui({
    view:"multiview", // указывать необязательно
    cells:[/* ячейки */],
    animate:{
        type:"flip",
        subtype:"vertical"
    }
});


Default value:

{type:"slide", subtype:"together"}

Related samples

Details

Отключение анимации

Чтобы отключить анимацию, задайте animate:false:

webix.ui({
    view:"multiview",
    animate:false,
    cells:[/* ... */]
});

Свойства объекта

У объекта animate может быть 3 свойства:

  • direction - направление анимации (необязательно указывать)
    • left, right, top, bottom
  • type - тип анимации ('slide' по умолчанию):
    • slide, flip
  • subtype - подтип анимации ('together' по умолчанию):
    • если type:slide
      • together, in, out
    • если type:flip
      • horizontal, vertical
See also
Наверх
If you have not checked yet, be sure to visit site of our main product Webix web ui framework and page of multiview control product.