Skip to content
/ kaysa Public

✨ Kaysa: Modular horizontal slider with touch controls, custom scrollbars, and responsive gap settings. Built with pure JavaScript for seamless integration.

License

Notifications You must be signed in to change notification settings

edukah/kaysa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🎠 Kaysa - Lightweight JavaScript Slider

GitHub MIT License Version

✨ Kaysa: Modular horizontal slider with touch controls, custom scrollbars, and responsive gap settings. Built with pure JavaScript for seamless integration.

✨ Features

  • 🎨 Dual Configuration (JS + HTML attributes)
  • 📱 Mobile-friendly touch support
  • 8KB Gzipped (Zero dependencies)
  • 🔍 Interactive Help (Kaysa.manual())

📦 Installation & ⚙️Initialization

Note: The target parameter is required and must be a valid DOM element or selector. All other options are optional.

Include in your HTML <head>

Make sure to include the stylesheet and the script:

<head>
  <link rel="stylesheet" href="dist/kaysa.min.css" />
  <script type="text/javascript" src="dist/kaysa.min.js"></script>
</head>

Understanding HTML Structure

Minyatur also allows configuring behavior using data-* attributes directly in HTML. This is ideal for simple use-cases without writing JavaScript.

Example:

<div class="slider"
     data-kaysa-scroll-speed="0.7"
     data-kaysa-gap="20px"
     data-kaysa-use-custom-scrollbar="true">
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
</div>

🚀 Basic Usage

JavaScript Configuration

new Kaysa({
  target: '.slider',        // Required - selector or element
  scrollSpeed: 0.7,         // 0.1 (slow) - 1 (fast)
  gap: '20px',              // CSS valid spacing
  useCustomScrollbar: true  
});

HTML Attribute Configuration

<div class="slider"
     data-kaysa-scroll-speed="0.7"
     data-kaysa-gap="20px"
     data-kaysa-use-custom-scrollbar="true">
  <!-- slider items here -->
</div>

⚙️ Configuration Options

Option Type Default HTML Attribute
scrollSpeed number 0.8 data-kaysa-scroll-speed
gap string '15px' data-kaysa-gap
useCustomScrollbar boolean false data-kaysa-use-custom-scrollbar

🌟 Interactive Help

Run in console:

Kaysa.manual(); // Shows both syntax options

🌐 GitHub Links

📜 License

MIT © 2024 edukah

About

✨ Kaysa: Modular horizontal slider with touch controls, custom scrollbars, and responsive gap settings. Built with pure JavaScript for seamless integration.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published