Check documentation for the latest version of dhtmlxSuite Carousel Skins DHTMLX Docs

Carousel Skins

There are three types of skins that can be applied for Carousel:

  • material

  • dhx_skyblue

  • dhx_web

  • dhx_terrace


The "material" skin is used by default. Depending on the attached CSS skin file, carousel will try to detect the skin automatically. If you have several attached css files, you need to force skin during initialization:

// init with script
var myCarousel = new dhtmlXCarousel("parentId", "slide", "dhx_web");
// or by using object API init
var myCarousel = new dhtmlXCarousel({
    skin: "dhx_web"
});
Back to top