NeoPopup is a modern, customizable, and responsive 3D popup module designed for sleek and professional web interfaces. With options for themes, animations, and customization, this module makes adding a stunning popup to your website effortless.
Clone the repository or download the module files:
git clone https://github.com/BOSS294/NeoPopup.git
Include the JavaScript file in your project:
<script src="path/to/developmentPopup.js"></script>
developmentPopup.init({ title: "Welcome to NeoPopup!", body: "Thank you for exploring the modern 3D popup module.", buttonText: "Learn More", buttonCallback: () => window.open('https://github.com/BOSS294/NeoPopup', '_blank'), });
Option | Type | Default | Description |
---|---|---|---|
title | string | "Under Development" | Title of the popup. |
body | string | "Oops!" | Body content (HTML supported). |
buttonText | string | "Check Latest Updates" | Text for the main button. |
buttonCallback | function | null | Callback function for the main button click. |
position | string | "bottom-right" | Popup position: top-right, top-left, bottom-right, or bottom-left. |
theme | string | "dark" | Theme for the popup: dark or light. |
colors | object | {} | Custom colors: { background, text, button }. |
size | object | {} | Size options: { width, height }. |
animation | string | "slide" | Animation type. |
autoClose | boolean | false | Automatically close the popup. |
closeDuration | number | 5000 | Auto-close duration in milliseconds. |
persistent | boolean | false | Prevent popup from showing repeatedly using local storage. |
To include NeoPopup's built-in styling, ensure the following:
To customize the design further, modify the included CSS:
git clone https://github.com/BOSS294/NeoPopup.git
<script src="path/to/developmentPopup.js"></script>
Contributions are always welcome! Here's how you can help:
For any queries or feature requests:
This project is licensed under the MIT License. See the LICENSE file for details.
Developed with ❤️ by Mayank Chawdhari. ?
The above is the detailed content of NeoPopup - The Modern Popup Module. For more information, please follow other related articles on the PHP Chinese website!