NeoPopup ist ein modernes, anpassbares und reaktionsfähiges 3D-Popup-Modul, das für elegante und professionelle Weboberflächen entwickelt wurde. Mit Optionen für Themen, Animationen und Anpassungen ermöglicht dieses Modul das mühelose Hinzufügen eines beeindruckenden Popups zu Ihrer Website.
Klonen Sie das Repository oder laden Sie die Moduldateien herunter:
git clone https://github.com/BOSS294/NeoPopup.git
Fügen Sie die JavaScript-Datei in Ihr Projekt ein:
<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. |
Um das integrierte Styling von NeoPopup einzubeziehen, stellen Sie Folgendes sicher:
Um das Design weiter anzupassen, ändern Sie das enthaltene CSS:
git clone https://github.com/BOSS294/NeoPopup.git
<script src="path/to/developmentPopup.js"></script>
Beiträge sind immer willkommen! So können Sie helfen:
Bei Fragen oder Funktionswünschen:
Dieses Projekt ist unter der MIT-Lizenz lizenziert. Einzelheiten finden Sie in der LIZENZ-Datei.
Entwickelt mit ❤️ von Mayank Chawdhari. ?
Das obige ist der detaillierte Inhalt vonNeoPopup – Das moderne Popup-Modul. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!