1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
| 'use script' //开发环境建议开启严格模式
| ;
| (function(window, mars3d) {
| //创建widget类,需要继承BaseWidget
| class MyWidget extends mars3d.widget.BaseWidget {
| //弹窗配置,2个弹窗的情形
| get view() {
| return [{
| type: 'window',
| url: 'viewLeft.html',
| name: 'left',
| windowOptions: {
| noTitle: true,
| closeBtn: 0,
| width: 380,
| position: {
| top: 150,
| bottom: 25,
| left: 0,
| },
| },
| },
| {
| type: 'window',
| url: 'viewRight.html',
| name: 'right',
| windowOptions: {
| noTitle: true,
| closeBtn: 0,
| width: 380,
| position: {
| top: 125,
| bottom: 25,
| right: 0,
| },
| },
| },
| ]
| }
|
| //每个窗口创建完成后调用
| winCreateOK(opt, result) {
|
| }
| //打开激活
| activate() {
|
| }
| //关闭释放
| disable() {}
|
| }
|
| //注册到widget管理器中。
| mars3d.widget.bindClass(MyWidget)
|
| //每个widet之间都是直接引入到index.html中,会存在彼此命名冲突,所以闭包处理下。
| })(window, mars3d)
|
|