g023 / Super-Simple-Javascript-Window-Manager

A simple minimalist window manager for javascript that uses jquery, jquery-ui.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Super Simple Javascript Window Manager

Super Simple Javascript Window Manager

License: BSD 3-Clause Version

A simple minimalist window manager for javascript that uses jquery, jquery-ui.

Features

  • Draggable windows
  • Resizable windows
  • Closeable windows
  • Focus window
  • Set CSS
  • Set content

Usage

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">

<link rel="stylesheet" href="Simple_Window.Theme.Default.css">

<script src="Simple_Window.js"></script>

<script>
    // Usage example
    const window1 = new Simple_Window('Window 1', '<p>Content of Window 1</p>');
    window1.createWindow('bob');
    window1.setCss('width', 400);
    window1.setCss('height', 100);
</script>

For more usage examples and detailed documentation, visit Super Simple Javascript Window Manager.

Author

About

A simple minimalist window manager for javascript that uses jquery, jquery-ui.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:HTML 47.0%Language:JavaScript 40.4%Language:CSS 12.6%