NeoPopup est un module popup 3D moderne, personnalisable et réactif conçu pour des interfaces Web élégantes et professionnelles. Avec des options de thèmes, d'animations et de personnalisation, ce module permet d'ajouter facilement une superbe popup à votre site Web.
Clonez le référentiel ou téléchargez les fichiers du module :
git clone https://github.com/BOSS294/NeoPopup.git
Incluez le fichier JavaScript dans votre projet :
<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. |
Pour inclure le style intégré de NeoPopup, assurez-vous de ce qui suit :
Pour personnaliser davantage le design, modifiez le CSS inclus :
git clone https://github.com/BOSS294/NeoPopup.git
<script src="path/to/developmentPopup.js"></script>
Les contributions sont toujours les bienvenues ! Voici comment vous pouvez aider :
Pour toute question ou demande de fonctionnalité :
Ce projet est sous licence MIT. Voir le fichier LICENCE pour plus de détails.
Développé avec ❤️ par Mayank Chawdhari. ?
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!