📦 Dialog Components Library
This project is a collection of customizable and reusable dialog components, inspired by Android development. Ideal for use in web applications where various types of dialogs are needed for user interactions.
✨ Features
- Dialog – Standard, centered dialog box.
- BottomDialog – Slides in from the bottom.
- TopDialog – Slides in from the top.
- SideDialog – Slides in from the left or right.
- AlertDialog – Simple alert with title, message, and optional actions.
- ConfirmationDialog – Includes confirm/cancel buttons, perfect for user decisions.
🚀 How to Use
1. Add the Dialog HTML
<!-- Standard Dialog -->
<div id="myDialog" class="dialog">
<div class="dialog-content">
<h2>Dialog Title</h2>
<p>This is a reusable dialog component.</p>
<button onclick="closeDialog()">Close</button>
</div>
</div>
#