Skip to content

rmellis/FC-WebOS

Repository files navigation



Webdows is a dynamic window API for the web browser designed to look and feel like Microsoft Windows


Features

  • Very Simple API

  • Well documented (Before first release)

  • Supported by Edge, Chrome, Safari, Firefox, and Opera.

  • 99% CSS vector design. Bitmaps rarely used for styling

  • Customizable themes

  • Accurate Microsoft Windows like behavior.

Simple API

Making a window

new explorer.window() .title('Hello World') .resize(200, 200) .callback(function() { this.body.html('Test 123'); });

Creating a context menu

new explorer.context() .append([ { title: 'Hello' }, {}, { title: 'World', callback: function() { console.log('World Clicked'); } } ]);

About

A dynamic InBrowser Windows Like WebApp Management system.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 67.5%
  • CSS 24.4%
  • HTML 6.2%
  • Java 1.7%
  • PHP 0.2%