Lightweight JS Library for UI Components
A modern, lightweight alternative to KendoUI. Build beautiful interfaces with minimal overhead and maximum performance.
Try each component and copy the code to get started
Components are preview versions and may change during development
Customizable buttons with hover effects and multiple variants
$('.my-button').velocityButton({
variant: 'primary',
size: 'medium'
});
Enhanced input fields with validation and styling
$('.my-input').velocityInput({
validation: 'email',
placeholder: 'Enter email'
});
Animated progress indicators with customizable styling
$('.my-progress').velocityProgress({
value: 65,
animated: true
});
Clean tab navigation with smooth transitions
$('.my-tabs').velocityTabs({
active: 0,
animation: 'fade'
});
Responsive modal dialogs with backdrop and animations
$('.my-modal').velocityModal({
backdrop: true,
keyboard: true
});
Customizable dropdown menus with search and multi-select
$('.my-dropdown').velocityDropdown({
search: true,
multiple: false
});