Class: WindowUI

ov.UI. WindowUI

new ov.UI.WindowUI(parameter)

common/PilotGaea-UI.js, line 527

新增UI物件固定在畫面的某一位置上,可以用來放html元素,ex:iframe、ov.chart生成的圖表等等,需加入material-icons.css
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
或參照Google Fonts Material Icons Guide設置離線版本。
https://developers.google.com/fonts/docs/material_icons

Name Type Description
parameter Object

UI設定參數

Name Type Description
x number

UI的起始x位置,註:位置為螢幕位置

y number

UI的起始y位置,註:位置為螢幕位置

width number

UI的寬

height number

UI的高

lockPointHorizontal string

鎖點的橫位置,可以設置left、middle、right

lockPointVertical string

鎖點的縱位置,可以設置top、middle、bottom

offsetX number

UI的偏移x位置

offsetY number

UI的偏移y位置

title string

標題的內容文字,若沒有設置則不會出現標題

closeButton boolean

是否有按鈕

onClose function

關閉時的回呼事件

Example

var windowUI = new ov.UI.WindowUI(parameter);

Methods

updateParameter(parameter)

common/PilotGaea-UI.js, line 538

刷新UI參數

Name Type Description
parameter Object

要修改的UI參數