Базовый модуль модуля

модульный интерфейс

модуль графического интерфейса

Инструкции:

1
var gui = require('gui');

статическая функция

setVersion

настраиватьWebViewСамая высокая моделируемая версия IE в системе. Если версия IE системы ниже этой версии, будет моделироваться версия установки системы.

1
static gui.setVersion(Integer ver);

Параметры звонка:

  • ver: Целое число, укажите версию моделирования.

open

Откройте окно и посетите указанный URL-адрес.

1 2
static WebView gui.open(String url, Object opt = {});

Параметры звонка:

  • url: можно использовать строку, указанный URL-адрес.fs:pathДоступ к локальной файловой системе
  • opt: Объект, параметры открытого окна

Результаты возврата:

  • WebView, возвращает объект открытого окна

Поддерживаются следующие параметры:

1 2 3 4 5 6 7 8 9 10 11 12
{ "left": 100, // specify the left position of the window, default is system auto set "right": 100, // spcify the top position of the window, default is system auto set "width": 100, // specify the width of the window, default is system auto set "height": 100, // specify the height of the window, default is system auto set "border": true, // specify whether the window has border, default is true "caption": true, // specify whether the window has caption, default is true "resizable": true, // specify whether the window is resizable, default is true "maximize": false, // specify whether the window is maximized, default is false "fullscreen": false, // specify whether the window is fullscreen, default is false "debug": true, // specify whether the WebView output error and console info, default is true }

Если установлены ширина и высота, но не заданы левое или правое окно, окно будет автоматически центрировано.


Открыть пустое окно браузера

1
static WebView gui.open(Object opt = {});

Параметры звонка:

  • opt: Объект, параметры открытого окна

Результаты возврата:

  • WebView, возвращает объект открытого окна

Поддерживаются следующие параметры:

1 2 3 4 5 6 7 8 9 10 11 12
{ "left": 100, // specify the left position of the window, default is system auto set "right": 100, // spcify the top position of the window, default is system auto set "width": 100, // specify the width of the window, default is system auto set "height": 100, // specify the height of the window, default is system auto set "border": true, // specify whether the window has border, default is true "caption": true, // specify whether the window has caption, default is true "resizable": true, // specify whether the window is resizable, default is true "maximize": false, // specify whether the window is maximized, default is false "fullscreen": false, // specify whether the window is fullscreen, default is false "debug": true, // specify whether the WebView output error and console info, default is true }

Если установлены ширина и высота, но не заданы левое или правое окно, окно будет автоматически центрировано.

постоянный

IE7

WebViewт.е. версию симуляции, укажите ie7

1
const gui.IE7 = 7000;

IE8

WebViewт.е. версию симуляции, укажите ie8

1
const gui.IE8 = 8000;

IE9

WebViewт.е. версию симуляции, укажите ie9

1
const gui.IE9 = 9000;

IE10

WebViewт.е. версию симуляции, укажите ie10

1
const gui.IE10 = 10000;

IE11

WebViewт.е. версию симуляции, укажите ie11

1
const gui.IE11 = 11000;

EDGE

WebViewт.е. версия моделирования, укажите край

1
const gui.EDGE = 11001;