Floating windows for use as pop-ups, modal or separate sources of information in a user graphical interface.
Project description
Floating windows for use as pop-ups, modal or separate sources of information in a user graphical interface.
Detailed documentation is in the “docs” directory.
Quick start
Add “floating_windows” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'floating_windows', )
Add static files css/js:
<link type="text/css" rel="stylesheet" href="{% static 'floating_windows/css/windows.css' %}"> <script src="{% static 'floating_windows/js/windows.js' %}"></script>
Create and add window(s) template(s) to the base template:
<!-- Separate template "sign_in_modal.html" --> {% extends 'floating_windows/windows/default.html' %} {% block body_content %} <!-- window body --> {% endblock %} <!-- In base template --> {% include 'blocks/floating_windows/sign_in_modal.html' with fw_id='auth' %}
You can load windows content dynamically through ajax, in this case, you need to add basic window template that will be used by the script to copy and create new windows:
<!-- In base template --> {% include 'floating_windows/windows/default.html' %}
Initialize windows script. For several windows with background on same page, which can display in same time, you must specify floatingWindowZIndex attribute for background and window correct display:
const fw = new FloatingWindows(); fw.config = { 'fw-1': { 'floatingWindowTitle': 'Title-1', 'floatingWindowPosition': '125px,unset,unset,230px', 'floatingWindowHideOnOutsideClick': true, popup 'floatingWindowShowFooter': false, 'floatingWindowSetBackground': 'body', background parent container (bcg of popups is ignoring) 'floatingWindowZIndex': '200', set this attr to set windows hierarchy 'floatingWindowSetToUrl': true, automatic window opening on page reload by get-parameter in address-bar 'floatingWindowPushToHistory': true add window open/close events to browser history }, ... } // etc. see code for thin setup fw.initWindows(); $(document).on('floating-window:opened', function (event, window, trigger) { // tracking of signals about the opening of windows for loading content in them. // configure content load here });
Setup trigger in template:
<button type="button" data-floating-window-open="fw-1"> Trigger </button>
Example:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.