logo

Installation

Pagination

const options = {
  pagination: {
    enabled: true, // Allow pagination,
    defaultDotsStyle: true, // Set default style on indicator
    position: "outside", // Position of pagination, value: inside | outside | center
    wrap: false, // Set wrapper around indicator
    specialWrap: {  // Add special disposition to wrapper 
      enabled: false, // Allow special display
      left:"0px", // Left position of wrapper , unit (px,%,rem) 
      top:"0px", // Top position of wrapper , unit (px,%,rem) 
      justifyContent: "flex-end", // Justify-content display in pagination container (same value like with css)
      alignItems: "flex-end",  // Align-items display in pagination container (same value like with css)
      orientation: "vertical"  // Orientation of pagination, value: vertical | horizontal
    }, 
    gap: "3px", // Space between indicators ,unit (px) 
    sizeButton: "1.3rem" // Size of indicator (Height / width) ,unit (px,%,rem) 
  } 
}