NotifyX Premium Toast Notification Library Demos
Download Back To CSSScript.Com
Lightweight toast notifications for any framework. Zero dependencies, full TypeScript support, WCAG compliant. Less than 3KB gzipped.
Basic Notifications
Advanced Features
Positions Demo
⨠Key Features
đ¨ Premium Design
Beautiful glassmorphism with smooth animations
đĒļ Lightweight
Only 1.4KB gzipped
đą Responsive
Perfect on all devices
âŋ Accessible
Full ARIA support
đ Dark Mode
Auto dark mode ready
⥠Promise Support
Track async operations
// Basic Usage
NotifyX.success('Success!');
NotifyX.error('Error occurred');
// Promise Support
await NotifyX.promise(fetchData(), {
loading: 'Loading...',
success: 'Done!',
error: 'Failed!'
});