Documentation

scrollSpeed

speed of scrolling ('300ms' by default)

string scrollSpeed;

Example

webix.ui({
    view:"carousel",
    id:"carousel1",
    container:"box",
    scrollSpeed:"500ms",
    cols:[
       { id:"cell1", template:"<img src='spring.jpg'/>" },
       { id:"cell2", template:"<img src='summer.jpg'/>" }
    ]
});

See also

  • articles
  • Back to top