-
Notifications
You must be signed in to change notification settings - Fork 0
/
ahmm.html
9635 lines (8075 loc) · 605 KB
/
ahmm.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!--***************************************************************************************************************************************-->
<!--************************************** 阿色全息脑图 (AHMM: Arthur's Holographic Mind Map) **********************************************-->
<!--******************************************************* Ver H2024.9.19.12 *************************************************************-->
<!--****************************************************** 更新日期:2024.11.15 ************************************************************-->
<!--********************************************************** 作者:王权 ******************************************************************-->
<!--******************************************** 版权所有 自由使用 自由复制 自由共享 *********************************************************-->
<!--***************************************************************************************************************************************-->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<head>
<meta charset="utf-8" />
<meta name="keywords" content="AHMM,全息脑图,大系统观,BSV,王权,阿色,Arthur's Holographic Mind Map,Big Systems View,bjbq20120919xj,思维导图,树新风,开源,免费">
<meta name="viewport" content="width=device-width, user-scalable=yes">
<title id="BROWSER_TITLE">阿色全息脑图(AHMM: Arthur's Holographic Mind Map)</title>
<link rel="shortcut icon" type="image/x-icon" href="http://www.holomind.com.cn/ahmm/favicon.ico" />
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!--************************************************************************************************************************************-->
<!--********************************************************* 前置 JavaScript **********************************************************-->
<!-- 前置的作用是满足前面的html代码中,以及全文件代码均可调用 -->
<script>
// ************************************************************ 模仿$ ****************************************************************
// 将 document.getElementById 用$代替
// 置于最前,后面各处才能调用
function $(Nid) {
return document.getElementById(Nid);
}
</script>
<!--********************************************************* 前置 JavaScript 结束 ********************************************************-->
<!--***************************************************************************************************************************************-->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!--=======================================================================================================================================-->
<!--============================================================ 定义 CSS 样式 ============================================================-->
<style>
/* 通用定义 */
h1 {
font-size: 30px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 16px;
}
h4 {
font-size: 14px;
}
h5 {
font-size: 50px;
line-height: 55px;
}
logo {
font-size: 10px;
line-height: 11px;
}
a:link {
color: black;
text-decoration: none;
}
a:visited {
color: black;
text-decoration: none;
}
a:hover {
color: #FF5500;
text-decoration: none;
}
a:active {
color: blue;
text-decoration: none;
}
/*保存数据的元素标签 <dr> 设为隐藏*/
.data_saver {
display: none;
}
/*各个泡泡与吸引子之间的连线*/
.link_line {
stroke-width: 1;
fill: none;
}
/*内部序参量,一个bubble上各个元素的格式*/
.inner_para1 {
display: block;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
position: absolute;
background-color: none;
opacity: 1;
transition: transform 0.3s ease-in-out; /* 平滑过渡效果 */
border-radius: 50%;
background-size: cover;
background-position: center;
}
.inner_para2 {
filter: url(#SHADOW1);
}
.inner_para3 {
/*保留备用*/
}
.inner_para4 {
text-anchor: middle;
font-weight: bold;
}
.inner_para5 {
text-anchor: middle;
font-weight: bold;
filter: url(#SHADOW2);
}
.inner_para6 {
text-anchor: middle;
}
/*外部关联参量,一个block上各个元素的格式*/
.outer_para1 {
fill: #A6A6A6;
stroke: #000;
stroke-width: 0;
filter: url(#SHADOW1);
}
.outer_para2 {
/*保留备用*/
}
.outer_para3 {
font-size: 16px;
text-anchor: start;
font-weight: bold;
}
.outer_para4 {
font-size: 36px;
fill: #999999;
stroke: #999999;
stroke-width: 0;
text-anchor: start;
font-weight: bold;
filter: url(#SHADOW2);
}
.outer_para5 {
font-size: 36px;
text-anchor: start;
font-weight: bold;
}
.outer_para6 {
font-size: 28px;
text-anchor: start;
}
.outer_para7 {
font-size: 24px;
text-anchor: start;
}
.inner_outer_para_edit1 {
stroke-width: 0;
stroke: #000;
fill: #AA0000;
fill-opacity: 0;
}
.inner_outer_para_edit2 {
fill: #888888;
stroke: #000;
stroke-width: 0;
text-anchor: middle;
cursor: text;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard syntax */
}
.inner_outer_para_edit3 {
fill: #888888;
stroke: #000;
stroke-width: 0;
text-anchor: middle;
cursor: pointer;
}
/*各个编辑窗口*/
.edit_box1 {
display: none;
padding-left: 50px;
padding-right: 50px;
position: absolute;
font-size: 22px;
background-color: #f6f6f6;
border: 1px solid #aaaaaa;
opacity: 0.95;
text-align: center;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#909090,direction=120,strength=8); /*ie <!-- 不修改 --> */
-moz-box-shadow: 4px 4px 20px #909090; /*firefox*/
-webkit-box-shadow: 4px 4px 20px #909090; /*safari或chrome*/
box-shadow: 4px 4px 20px #909090; /*opera或ie9*/
}
/*各个显示窗口*/
.show_box_0 { /*padding=0*/
display: none;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
position: absolute;
font-size: 22px;
background-color: #f6f6f6;
border: 0px;
opacity: 0.95;
text-align: center;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#909090,direction=120,strength=8); /*ie <!-- 不修改 --> */
-moz-box-shadow: 4px 4px 20px #909090; /*firefox*/
-webkit-box-shadow: 4px 4px 20px #909090; /*safari或chrome*/
box-shadow: 4px 4px 20px #909090; /*opera或ie9*/
}
.show_box_20 { /*padding=20*/
display: none;
padding-left: 20px;
padding-right: 20px;
padding-top: 20px;
padding-bottom: 20px;
position: absolute;
font-size: 22px;
background-color: #f6f6f6;
border: 0px;
opacity: 0.95;
text-align: center;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#909090,direction=120,strength=8); /*ie <!-- 不修改 --> */
-moz-box-shadow: 4px 4px 20px #909090; /*firefox*/
-webkit-box-shadow: 4px 4px 20px #909090; /*safari或chrome*/
box-shadow: 4px 4px 20px #909090; /*opera或ie9*/
}
.show_box_50 { /*padding=50*/
display: none;
padding-left: 50px;
padding-right: 50px;
position: absolute;
font-size: 22px;
background-color: #f6f6f6;
border: 0px;
opacity: 0.95;
text-align: center;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#909090,direction=120,strength=8); /*ie <!-- 不修改 --> */
-moz-box-shadow: 4px 4px 20px #909090; /*firefox*/
-webkit-box-shadow: 4px 4px 20px #909090; /*safari或chrome*/
box-shadow: 4px 4px 20px #909090; /*opera或ie9*/
}
/*各个input文本框*/
.input_text {
height: 20px;
font-size: 18px;
}
/*各个button*/
.button_size_1 {
height: 32px;
font-size: 18px;
white-space:nowrap;
}
.button_size_2 {
width: 150px;
height: 40px;
font-size: 16px;
white-space: nowrap;
}
.button_size_3 {
width: 150px;
height: 30px;
font-size: 18px;
white-space: nowrap;
}
.button_size_4 {
width: 40px;
height: 26px;
font-size: 18px;
white-space: nowrap;
}
/* 禁止内容被选择,用于控制菜单 */
.unselectable {
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard syntax */
}
/* 点击时闪烁 */
@keyframes flash {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.flash {
animation: flash 0.5s ease-in-out;
}
</style>
<!-- -->
<!-- -->
<!--========================================================= 定义 CSS 样式 结束 ==========================================================-->
<!--=======================================================================================================================================-->
</head>
<body style="background-color:white;">
<center>
<!--===================================================================================================================================-->
<!--===================================================================================================================================-->
<!--=================================================== 数据区开始:下面文本不会显示 ==================================================-->
<!--
本部分具有数据文件的功能,这是AHMM.html能保存数据的原因。
这是阿色全息脑图全息特性的核心体现。
下面是隐藏起来用于存放数据的 div。
这个数据区必须放在js操作代码之前,可以放在本文件body区的最顶端,否则在js之后加载,则不能使用。
-->
<!--===================================================================================================================================-->
<!--===================================================================================================================================-->
<div id="DATA_SAVER" class="data_saver">
<!-- 数据区 -->
<!-- 功能扩展及错误处理数据区(尚未使用,备用) -->
<dr id="P_D_COMMON_VALUES"></dr>
<dr id="P_D_ERROR"></dr>
<!-- 基因数据区 -->
<dr id="P_D_SELF_ID">0</dr>
<dr id="P_D_SELF_GENERATION">0</dr>
<dr id="P_D_SELF_CREATION_TIME"></dr>
<dr id="P_D_SELF_LAST_TIME"></dr>
<dr id="P_D_SELF_CREATION_VERSION"></dr>
<dr id="P_D_FATHER_ID">-1</dr>
<dr id="P_D_FATHER_TITLE"></dr>
<dr id="P_D_FATHER_INFO"></dr>
<!-- 公共数据区 -->
<dr id="P_D_SAVED">0</dr>
<dr id="P_D_LOGO_PIC"></dr>
<dr id="P_D_BACK_PIC"></dr>
<dr id="P_D_BACK_MUSIC"></dr>
<dr id="P_D_TITLE">+全息脑图标题</dr>
<dr id="P_D_HOMEPAGE"></dr>
<dr id="P_D_PREVPAGE"></dr>
<dr id="P_D_NEXTPAGE"></dr>
<dr id="P_D_FACECOVER"></dr>
<dr id="P_D_BACKCOVER"></dr>
<dr id="P_D_HIDE_SUPPORT"></dr>
<dr id="P_D_IN_MARK">内部序参量</dr>
<dr id="P_D_OUT_MARK">外部关联参量</dr>
<dr id="P_D_GEN_WORDS"></dr>
<dr id="P_D_AUTHOR">© 版权所有 作者:阿色 20120919(参考)</dr>
<dr id="P_D_COLOR_SET_NO">0</dr>
<dr id="P_D_COLOR_OPACITY_NO">0</dr>
<dr id="P_D_TEXT_COLOR_NO">0</dr>
<dr id="P_D_BORDER_COLOR_NO">0</dr>
<dr id="P_D_BORDER_WIDTH_NO">0</dr>
<dr id="P_D_BACKGROUND_COLOR_NO"></dr>
<dr id="P_D_SEQUENTIAL_PLAY"></dr>
<dr id="P_D_SHOW_TIME"></dr>
<dr id="P_D_STORY_LINE"></dr>
<!-- 内部序参量数据区 -->
<dr id="I_D_0_X">0.45</dr>
<dr id="I_D_0_Y">0.3</dr>
<dr id="I_D_0_TEXT0">@</dr>
<dr id="I_D_0_TEXT1"></dr>
<dr id="I_D_0_TEXT2"></dr>
<dr id="I_D_0_TEXT3"></dr>
<dr id="I_D_0_TEXT4"></dr>
<dr id="I_D_0_LINK"></dr>
<dr id="I_D_0_PIC"></dr>
<dr id="I_D_0_SCALE">1</dr>
<dr id="I_D_1_X">0.639445951</dr>
<dr id="I_D_1_Y">0.188469813</dr>
<dr id="I_D_1_TEXT0">[1]</dr>
<dr id="I_D_1_TEXT1"></dr>
<dr id="I_D_1_TEXT2"></dr>
<dr id="I_D_1_TEXT3"></dr>
<dr id="I_D_1_TEXT4"></dr>
<dr id="I_D_1_LINK"></dr>
<dr id="I_D_1_PIC"></dr>
<dr id="I_D_1_SCALE">1</dr>
<dr id="I_D_2_X">0.083056959</dr>
<dr id="I_D_2_Y">0.452387236</dr>
<dr id="I_D_2_TEXT0">[2]</dr>
<dr id="I_D_2_TEXT1"></dr>
<dr id="I_D_2_TEXT2"></dr>
<dr id="I_D_2_TEXT3"></dr>
<dr id="I_D_2_TEXT4"></dr>
<dr id="I_D_2_LINK"></dr>
<dr id="I_D_2_PIC"></dr>
<dr id="I_D_2_SCALE">1</dr>
<dr id="I_D_3_X">0.875996172</dr>
<dr id="I_D_3_Y">0.420925264</dr>
<dr id="I_D_3_TEXT0">[3]</dr>
<dr id="I_D_3_TEXT1"></dr>
<dr id="I_D_3_TEXT2"></dr>
<dr id="I_D_3_TEXT3"></dr>
<dr id="I_D_3_TEXT4"></dr>
<dr id="I_D_3_LINK"></dr>
<dr id="I_D_3_PIC"></dr>
<dr id="I_D_3_SCALE">1</dr>
<dr id="I_D_4_X">0.201335676</dr>
<dr id="I_D_4_Y">0.277343683</dr>
<dr id="I_D_4_TEXT0">[4]</dr>
<dr id="I_D_4_TEXT1"></dr>
<dr id="I_D_4_TEXT2"></dr>
<dr id="I_D_4_TEXT3"></dr>
<dr id="I_D_4_TEXT4"></dr>
<dr id="I_D_4_LINK"></dr>
<dr id="I_D_4_PIC"></dr>
<dr id="I_D_4_SCALE">1</dr>
<dr id="I_D_5_X">0.599492986</dr>
<dr id="I_D_5_Y">0.500777174</dr>
<dr id="I_D_5_TEXT0">[5]</dr>
<dr id="I_D_5_TEXT1"></dr>
<dr id="I_D_5_TEXT2"></dr>
<dr id="I_D_5_TEXT3"></dr>
<dr id="I_D_5_TEXT4"></dr>
<dr id="I_D_5_LINK"></dr>
<dr id="I_D_5_PIC"></dr>
<dr id="I_D_5_SCALE">1</dr>
<dr id="I_D_6_X">0.279643586</dr>
<dr id="I_D_6_Y">0.509078147</dr>
<dr id="I_D_6_TEXT0">[6]</dr>
<dr id="I_D_6_TEXT1"></dr>
<dr id="I_D_6_TEXT2"></dr>
<dr id="I_D_6_TEXT3"></dr>
<dr id="I_D_6_TEXT4"></dr>
<dr id="I_D_6_LINK"></dr>
<dr id="I_D_6_PIC"></dr>
<dr id="I_D_6_SCALE">1</dr>
<dr id="I_D_7_X">0.898620533</dr>
<dr id="I_D_7_Y">0.158267803</dr>
<dr id="I_D_7_TEXT0">[7]</dr>
<dr id="I_D_7_TEXT1"></dr>
<dr id="I_D_7_TEXT2"></dr>
<dr id="I_D_7_TEXT3"></dr>
<dr id="I_D_7_TEXT4"></dr>
<dr id="I_D_7_LINK"></dr>
<dr id="I_D_7_PIC"></dr>
<dr id="I_D_7_SCALE">1</dr>
<dr id="I_D_8_X">0.459739491</dr>
<dr id="I_D_8_Y">0.530226022</dr>
<dr id="I_D_8_TEXT0">[8]</dr>
<dr id="I_D_8_TEXT1"></dr>
<dr id="I_D_8_TEXT2"></dr>
<dr id="I_D_8_TEXT3"></dr>
<dr id="I_D_8_TEXT4"></dr>
<dr id="I_D_8_LINK"></dr>
<dr id="I_D_8_PIC"></dr>
<dr id="I_D_8_SCALE">1</dr>
<dr id="I_D_9_X">0.064096642</dr>
<dr id="I_D_9_Y">0.252730704</dr>
<dr id="I_D_9_TEXT0">[9]</dr>
<dr id="I_D_9_TEXT1"></dr>
<dr id="I_D_9_TEXT2"></dr>
<dr id="I_D_9_TEXT3"></dr>
<dr id="I_D_9_TEXT4"></dr>
<dr id="I_D_9_LINK"></dr>
<dr id="I_D_9_PIC"></dr>
<dr id="I_D_9_SCALE">1</dr>
<dr id="I_D_10_X">0.819992929</dr>
<dr id="I_D_10_Y">0.216430298</dr>
<dr id="I_D_10_TEXT0">[10]</dr>
<dr id="I_D_10_TEXT1"></dr>
<dr id="I_D_10_TEXT2"></dr>
<dr id="I_D_10_TEXT3"></dr>
<dr id="I_D_10_TEXT4"></dr>
<dr id="I_D_10_LINK"></dr>
<dr id="I_D_10_PIC"></dr>
<dr id="I_D_10_SCALE">1</dr>
<dr id="I_D_11_X">0.053573526</dr>
<dr id="I_D_11_Y">0.096674758</dr>
<dr id="I_D_11_TEXT0">[11]</dr>
<dr id="I_D_11_TEXT1"></dr>
<dr id="I_D_11_TEXT2"></dr>
<dr id="I_D_11_TEXT3"></dr>
<dr id="I_D_11_TEXT4"></dr>
<dr id="I_D_11_LINK"></dr>
<dr id="I_D_11_PIC"></dr>
<dr id="I_D_11_SCALE">1</dr>
<!-- 外部关联参量数据区 -->
<dr id="O_D_1_TEXT0">[1]</dr>
<dr id="O_D_1_TEXT1"></dr>
<dr id="O_D_1_TEXT2"></dr>
<dr id="O_D_1_TEXT3"></dr>
<dr id="O_D_1_LINK"></dr>
<dr id="O_D_1_PIC"></dr>
<dr id="O_D_2_TEXT0">[2]</dr>
<dr id="O_D_2_TEXT1"></dr>
<dr id="O_D_2_TEXT2"></dr>
<dr id="O_D_2_TEXT3"></dr>
<dr id="O_D_2_LINK"></dr>
<dr id="O_D_2_PIC"></dr>
<dr id="O_D_3_TEXT0">[3]</dr>
<dr id="O_D_3_TEXT1"></dr>
<dr id="O_D_3_TEXT2"></dr>
<dr id="O_D_3_TEXT3"></dr>
<dr id="O_D_3_LINK"></dr>
<dr id="O_D_3_PIC"></dr>
<dr id="O_D_4_TEXT0">[4]</dr>
<dr id="O_D_4_TEXT1"></dr>
<dr id="O_D_4_TEXT2"></dr>
<dr id="O_D_4_TEXT3"></dr>
<dr id="O_D_4_LINK"></dr>
<dr id="O_D_4_PIC"></dr>
<dr id="O_D_5_TEXT0">[5]</dr>
<dr id="O_D_5_TEXT1"></dr>
<dr id="O_D_5_TEXT2"></dr>
<dr id="O_D_5_TEXT3"></dr>
<dr id="O_D_5_LINK"></dr>
<dr id="O_D_5_PIC"></dr>
</div> <!-- <div id="DATA_SAVER">结束 -->
<!-- -->
<!-- -->
<!--===================================================================================================================================-->
<!--===================================================================================================================================-->
<!--===================================================== 数据区结束:上面文本不会显示 ===================================================-->
<!--===================================================================================================================================-->
<!--===================================================================================================================================-->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!--===================================================================================================================================-->
<!--===================================================================================================================================-->
<!--========================================= 下面是html主体文本,包括svg 框架和各个编辑窗口两部分 ========================================-->
<!--===================================================================================================================================-->
<!--===================================================================================================================================-->
<!-- -->
<!-- -->
<!--================================== 下面是svg 框架文本,它内部的一些数据由js修改形成最终html =======================================-->
<!-- -->
<!-- -->
<!--================================ 下面是装载全部部件的div,但不包括浏览当前目录/本地文件的部分 =====================================-->
<div id="DIV_ALL" style="display: none; background-color: #FFFFFF; position: absolute; left: 0px; top: 0px; display: none; ">
<!-- -->
<!-- -->
<!--===================== 下面是置于顶层的黑色覆盖层,最先放置是为了防止下面的图层闪烁 =====================-->
<div id="WELCOME_COVER" style="display:block; position:absolute; left:0px; top:0px; width:1920px; height:1080px; overflow:hidden; background-color:#000000; border:0px solid #666666; opacity:0.93; z-index:9000; "></div>
<script>
$("DIV_ALL").style.display = "none"; // 此处需设置,否则保存后值将改变,再次打开时内容会闪一下
$("WELCOME_COVER").style.display = "block";
</script>
<!-- -->
<!-- -->
<!--=============================== 下面是绘制内外部序参量及相关部件的画布 =================================-->
<div id="DIV_WHOLE_CANVAS" style="background-color: #FFFFFF; position: absolute; left: 15px; top: 0px; overflow: hidden;">
<!-- 整个绘图区的DIV:包括logo、标题、概述、各个主题词bubble、各个外部关联参量block,左右标签、版权作者、控制菜单条、序参量连线、中央灰色背景 -->
<!-- 不包括编辑操作窗口、提示窗口等 -->
<!--============================== 下面是头部LOGO、标题、功能图标等 ============================-->
<div id="DIV_WORK">
<!-- 全部工作区DIV -->
<div id="DIV_LOGO_BACK" style="position: absolute; left: 78px; top: 0px; width: 156px; height: 40px; color: #FF0000; background-color: #FFFFFF; float: left; ">
<!-- LOGO 背景的DIV -->
</div>
<div id="DIV_LOGO_SMALL" style="position: absolute; top: 0px; width: 136px; color:#FF0000; background-color:transparent; border: 0px dashed #FF0000; float:left; text-align:left; ">
<!-- 左上角LOGO的DIV -->
<span id="CHANGE_LOGO" onclick="editLogo();" title="设置【Logo】" class="unselectable" style="cursor: text; color: #666666; font-size: 23px; line-height: 5px; "
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000'; $('DIV_LOGO_SMALL_PIC').style.border='3px dashed #FF5500';"
onmouseout="this.style.color='#888888'; this.style.backgroundColor='rgba(255,255,255,0)'; $('DIV_LOGO_SMALL_PIC').style.border='0px dashed #FF5500';">...</span>
<a href="http://www.holomind.com.cn" target="_blank">
<div id="DIV_LOGO_SMALL_PIC" style="position: absolute; top: 20px; width: 146px; color:#FF0000; background-color:transparent; border: 0px dashed #FF5500; float:left; text-align:center; font-size:10px; line-height:9px; "
onmouseover="$('DIV_LOGO_SMALL_PIC').style.border='3px dashed #FF5500';"
onmouseout="$('DIV_LOGO_SMALL_PIC').style.border='0px dashed #FF5500';">
<table id="AHMM_LOGO_TEXT" style="display: none; font-size: 10px; line-height: 9px; ">
<tr>
<td style="width: 146px; text-align: center;">
<br />
<span style="cursor:pointer; color:#FF0000;" title="AHMM:阿色版权所有 您可自由使用 点击获取最新版本">
╔══╦╗╔╦═╦═╦═╦═╗<br />
║╔╗║╚╝║║║║║║║║║<br />
║╠╣║╔╗║║║║║║║║║<br />
╚╝╚╩╝╚╩╩═╩╩╩═╩╝<br />
</span>
</td>
</tr>
<tr>
<td align="center">
<span id="AHMM_VERSION1" style="cursor:pointer; color:#FF0000;">Version D20120919.x</span><br /><br />
</td>
</tr>
</table>
<img id="LOGO_PIC_IMG" src="" border="0" style="width:100px; display:block;" alt="Logo图片打开失败:Logo图片需要与本脑图文件(html)存储于同一文件夹。">
</div>
</a>
</div>
<div id="DIV_TITLE" style="position: absolute; left: 231px; top: 0px; width: 1441px; height: 40px;background-color: #FFFFFF; text-align: center; z-index: 2001;">
<!-- 全息脑图标题的DIV -->
<h1>
<b>
<br />
<span id="MAP_TITLE" style="font-size: 48px; cursor: default; text-shadow: 2px 2px #BBBBBB; color: #000000;"
onmouseover="this.style.color='#FF5500';"
onmouseout="this.style.color='#000000';">阿色全息脑图(AHMM: Arthur's Holographic Mind Map)</span>
<span id="MAP_TITLE2" title="* 编辑【标题】【链接页】【封面】【封底】 * 更改【通用设置】" class="unselectable" style="cursor:text; color:#666666; font-size:23px;"
onclick="editTitle();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000'; $('MAP_TITLE').style.color='#FF5500';"
onmouseout="this.style.color='#888888'; this.style.backgroundColor='rgba(255,255,255,0)'; $('MAP_TITLE').style.color='#000000';">...</span>
</b>
</h1><br />
</div>
<div id="DIV_FUNC_BACK" style="position: absolute; left: 1669px; top: 0px; width: 134px; height: 40px; background-color: #FFFFFF; text-align: center; z-index: 2000;"></div>
<div id="DIV_FUNC" class="unselectable" style="background-color: #888888; width:245px; height:22px; color: #FFFFFF; text-align:left; left:1616px; top:0px; position:absolute; z-index: 8007;">
<!-- 功能菜单的DIV -->
<div id="CANCEL_FULL_SCREEN" title="【退出播放】(快捷键:【Esc】) 连按【Esc】返回【编辑页面】" style="animation: blinker 2s linear infinite; color: #FF0000; width: 30px; height: 22px; cursor: pointer; display: none; font-size: 20px; line-height: 20px; float: right; text-align: center; "
onclick="exitFromFullScreen();"
onmouseover="this.style.color = '#FFFFFF'; this.style.backgroundColor = '#AA0000'; showCtrlBarForFullScreen2();"
onmouseout="this.style.color = '#FF0000'; this.style.backgroundColor = 'transparent'; hideCtrlBarForFullScreen2();">...</div>
<style>
@keyframes blinker {
50% {
opacity: 0;
}
}
</style>
<div id="CLOSE_THIS_PAGE" title="【关闭本页】" style="width: 30px; height: 22px; font-size: 16px; line-height: 20px; cursor: pointer; float: right; text-align: center;"
onclick="quitAHMMWithConfirm();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">✕</div>
<div id="ENTER_FULL_SCREEN" title="【全屏播放】(快捷键:【F10】) * 播放时支持键盘、鼠标和翻页笔 * 建议同时开启浏览器自带【全屏】 功能(快捷键:一般为【F11】)" style="width: 30px; height: 22px; cursor: pointer; font-size: 30px; line-height: 20px; float: right; text-align: center; margin-top: -1px;"
onclick="goIntoFullScreenAndPlay();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">▸</div>
<div style="width: 3px; background-color: transparent; height: 22px; color: #444444; text-align: center; float: right;"></div>
<div id="NEXT_ITEM" title="【后一项】" style="display: block; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="nextItem();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">⇨</div>
<div id="PREV_ITEM" title="【前一项】" style="display: block; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="prevItem();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">⇦</div>
<div id="NEXT_PAGE" title="【下一页】" style="display: none; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="nextPage();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">⇩</div>
<div id="PREV_PAGE" title="【上一页】" style="display: none; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="prevPage();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">⇧</div>
<div id="HOME_PAGE" title="【起始页】" style="display: none; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="homePage();"
onmouseover="this.style.color = '#FFFFFF'; this.style.backgroundColor = '#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">☉</div>
<div id="DIR_PAGE" title="【当前目录/本地】" style="width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 15px; line-height: 20px; float: right; text-align: center;"
onclick="showDir();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';">.</div>
</div>
<div id="DIV_FUNC2" class="unselectable" style="display: none; background-color: #888888; width: 125px; height: 22px; color: #FFFFFF; text-align: left; left: 1646px; top: 0px; position: absolute; z-index: 8007;">
<!-- 全屏时的功能菜单的DIV -->
<div style="width: 3px; background-color: #FFFFFF; height: 22px; color: #444444; text-align: center; float: right;"></div>
<div id="NEXT_ITEM2" title="【后一项】(快捷键:【→】 )" style="display: block; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="nextItem();"
onmouseover="this.style.color = '#FFFFFF'; this.style.backgroundColor = '#AA0000'; g_menuBarShouldDisplay = true;"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';hideCtrlBarForFullScreen2();">⇨</div>
<div id="PREV_ITEM2" title="【前一项】(快捷键:【←】 )" style="display: block; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="prevItem();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';g_menuBarShouldDisplay = true;"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';hideCtrlBarForFullScreen2();">⇦</div>
<div id="NEXT_PAGE2" title="【下一页】(快捷键:【↓】 )" style="display: none; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="nextPage();"
onmouseover="this.style.color = '#FFFFFF'; this.style.backgroundColor = '#AA0000'; g_menuBarShouldDisplay = true;"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';hideCtrlBarForFullScreen2();">⇩</div>
<div id="PREV_PAGE2" title="【上一页】(快捷键:【↑】 )" style="display: none; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="prevPage();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';g_menuBarShouldDisplay = true;"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';hideCtrlBarForFullScreen2();">⇧</div>
<div id="HOME_PAGE2" title="【起始页】(快捷键:【Home】)" style="display: none; width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 17px; line-height: 20px; float: right; text-align: center;"
onclick="homePage();"
onmouseover="this.style.color = '#FFFFFF'; this.style.backgroundColor = '#AA0000';g_menuBarShouldDisplay = true;"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';hideCtrlBarForFullScreen2();">☉</div>
<div id="DIR_PAGE2" title="【当前目录/本地】(快捷键:【End】)" style="width: 30px; height: 22px; cursor: pointer; color: #FFFFFF; font-size: 15px; line-height: 20px; float: right; text-align: center;"
onclick="showDir();"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';g_menuBarShouldDisplay = true;"
onmouseout="this.style.color='#FFFFFF'; this.style.backgroundColor='rgba(255,255,255,0)';hideCtrlBarForFullScreen2();">.</div>
</div>
<div id="MENU_CHAR" class="unselectable" style="width: 30px; height: 22px; background-color: #FFFF00; cursor: pointer; font-size: 20px; line-height: 20px; text-align: center; left: 1583px; top: 0px; position: absolute; z-index: 2001;"
onclick="showHideFuncMenu();" title="【功能菜单】"
onmouseover="this.style.color='#FFFFFF'; this.style.backgroundColor='#AA0000';"
onmouseout="this.style.color='#000000'; this.style.backgroundColor='#FFFF00';">≚</div>
<div id="CANCEL_FULL_SCREEN_HINT" class="unselectable" style="display: none; transition: opacity 5s ease-in-out; position: absolute; left: 1395px; top: 25px; width: 400px; height: 40px; background-color: transparent; z-index: 8007;">
<!-- 全屏时的提示退出播放的DIV -->
<svg height="40" width="400">
<polygon points="0,10 0,30 400,30 400,10 395,10 390,0 385,10" style="fill:#AA0000; stroke:#FFFFFF; stroke-width:0" filter="url(#GUIDE_SHADOW);" />
<text x="7" y="25" font-size="15" fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0" text-anchor="start" xml:space="preserve">点击【...】或按【Esc】键【退出播放】,进入【编辑状态】</text>
</svg>
</div>
<!-- -->
<!-- -->
<!-- 背景音乐。伴随脑图的播放开始和结束 -->
<audio id="BACK_MUSIC" src="" type="audio/mp3" loop></audio>
<!--==================== 下面是内部序参量圆泡泡bubble、外部关联参量块块block图svg 框架文本 ====================-->
<svg id="SVG_MAIN" style="position: absolute; top: 140px; left:81px;">
<!-- 内部序参量连接线和外部关联参连块块SVG的区域。注意:内部序参量泡泡不在这里,因为它们需要拖动,每个泡泡要用一个DIV装载,无法在SVG中。 -->
<!-- 圆泡泡bubble和方块block阴影、内部文字阴影 -->
<defs>
<filter id="SHADOW1"><feGaussianBlur stdDeviation="4" in="SourceGraphic"></feGaussianBlur> </filter>
<filter id="SHADOW2"><feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur> </filter>
</defs>
<!-- 背景图片,保持原比例自动充满,尺寸等在后面设定,与SVG_MAIN同 -->
<image id="BACK_PIC_IMG" preserveAspectRatio="xMidYMid slice" style="display: block;" />
<!-- SVG_MAIN的边框,仅用于设置背景图片/音乐时闪一下,尺寸等在后面设定,与SVG_MAIN同 -->
<rect id="SVG_MAIN_BORDER" x="0" y="0" rx="0" stroke="#FF5500" stroke-width="30" stroke-dasharray="30 15" fill="none" style="display:none;" />
<!-- 用于接收鼠标单击。单击时等同于按键【下一项】。尺寸等在后面设定,与SVG_MAIN同 -->
<rect id="SVG_MAIN_RECT_4_NEXTITEM" x="0" y="0" rx="0" stroke-width="0" fill="red" fill-opacity="0" onclick="nextItem();"/>
<!-- 设置背景图片/音乐:点击...时进入设置窗口 -->
<g>
<title>设置【背景图片/音乐】</title>
<rect id="CHANGE_BACK_PIC_MUSIC_2" x="18" y="18" rx="0" width="25" height="20" class="inner_outer_para_edit1" />
<text id="CHANGE_BACK_PIC_MUSIC" x="30" y="30" font-size="23" class="inner_outer_para_edit2" xml:space="preserve" onclick="editBackPicMusic();" onmouseover="this.style.fill='#FFFFFF'; $(this.id + '_2').style.fillOpacity='100';$('SVG_MAIN_BORDER').style.display='block';" onmouseout="this.style.fill='#888888'; $(this.id + '_2').style.fillOpacity='0'; $('SVG_MAIN_BORDER').style.display='none';">...</text>
</g>
<!-- 内部序参量连接线 -->
<!-- 定义连线的箭头 -->
<defs>
<marker id="arrow1" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow2" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow3" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow4" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow5" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow6" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow7" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow8" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow9" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow10" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
<marker id="arrow11" markerWidth="10" markerHeight="10" refX="0" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#000000" />
</marker>
</defs>
<line id="LN0" class="link_line" />
<line id="LN1" class="link_line" marker-end="url(#arrow1)" />
<line id="LN2" class="link_line" marker-end="url(#arrow2)" />
<line id="LN3" class="link_line" marker-end="url(#arrow3)" />
<line id="LN4" class="link_line" marker-end="url(#arrow4)" />
<line id="LN5" class="link_line" marker-end="url(#arrow5)" />
<line id="LN6" class="link_line" marker-end="url(#arrow6)" />
<line id="LN7" class="link_line" marker-end="url(#arrow7)" />
<line id="LN8" class="link_line" marker-end="url(#arrow8)" />
<line id="LN9" class="link_line" marker-end="url(#arrow9" />
<line id="LN10" class="link_line" marker-end="url(#arrow10)" />
<line id="LN11" class="link_line" marker-end="url(#arrow11)" />
<!-- 外部关联参量 -->
<g id="OUTER_PARA_1" onclick="" onmouseover="highLightBlock(1);" onmouseout="deHighLightBlock(1);" style="cursor: default; ">
<rect id="RT_1_1" x="1325" y="35" rx="21" width="357" height="150" class="outer_para1" />
<rect id="RT_1_2" x="1320" y="30" rx="21" width="357" height="150" class="outer_para2" />
<image id="O_P1_PIC" x="1330" y="40" width="337" height="130" style="display: none;" />
<text id="O_P1_T0" x="1340" y="50" xml:space="preserve" class="outer_para3">[1]</text>
<text id="O_P1_T1_1" x="1362" y="92" xml:space="preserve" class="outer_para4"></text>
<text id="O_P1_T1_2" x="1360" y="90" xml:space="preserve" class="outer_para5"></text>
<text id="O_P1_T2" x="1350" y="126" xml:space="preserve" class="outer_para6"></text>
<text id="O_P1_T3" x="1350" y="155" xml:space="preserve" class="outer_para7"></text>
<g>
<title>打开【链接】:2种方式:①鼠标或触屏【点击】本图元;②播放到当前位置时,按【回车】,或者,连按2次【右箭头】或【下一页】或 翻页笔【下一页】</title>
<text id="O_P1_LM" x="1364" y="175" class="inner_outer_para_edit3" onmouseover="this.style.fill='#FF0000'; highLightBlock(1);" onmouseout="this.style.fill='#888888'; deHighLightBlock(1);">»»»</text>
</g>
</g>
<g>
<title>编辑【外部关联参量 1】</title>
<rect id="O_P1_T4_2" x="1627" y="154" rx="0" width="25" height="20" class="inner_outer_para_edit1" />
<text id="O_P1_T4" x="1640" y="165" font-size="23" class="inner_outer_para_edit2" xml:space="preserve" onclick="editOuterPara(1);" onmouseover="this.style.fill='#FFFFFF'; $(this.id + '_2').style.fillOpacity='100'; highLightBlock(1);" onmouseout="this.style.fill='#888888'; $(this.id + '_2').style.fillOpacity='0'; deHighLightBlock(1);">...</text>
</g>
<g id="OUTER_PARA_2" onclick="" onmouseover="highLightBlock(2);" onmouseout="deHighLightBlock(2);" style="cursor:default;">
<rect id="RT_2_1" x="1325" y="204" rx="21" width="357" height="150" class="outer_para1" />
<rect id="RT_2_2" x="1320" y="199" rx="21" width="357" height="150" class="outer_para2" />
<image id="O_P2_PIC" x="1330" y="209" width="337" height="130" style="display: none;" />
<text id="O_P2_T0" x="1340" y="219" xml:space="preserve" class="outer_para3">[2]</text>
<text id="O_P2_T1_1" x="1362" y="261" xml:space="preserve" class="outer_para4"></text>
<text id="O_P2_T1_2" x="1360" y="259" xml:space="preserve" class="outer_para5"></text>
<text id="O_P2_T2" x="1350" y="295" xml:space="preserve" class="outer_para6"></text>
<text id="O_P2_T3" x="1350" y="324" xml:space="preserve" class="outer_para7"></text>
<g>
<title>打开【链接】:2种方式:①鼠标或触屏【点击】本图元;②播放到当前位置时,按【回车】,或者,连按2次【右箭头】或【下一页】或 翻页笔【下一页】</title>
<text id="O_P2_LM" x="1364" y="344" class="inner_outer_para_edit3" onmouseover="this.style.fill='#FF0000'; highLightBlock(2);" onmouseout="this.style.fill='#888888'; deHighLightBlock(2);">»»»</text>
</g>
</g>
<g>
<title>编辑【外部关联参量 2】</title>
<rect id="O_P2_T4_2" x="1627" y="323" rx="0" width="25" height="20" class="inner_outer_para_edit1" />
<text id="O_P2_T4" x="1640" y="334" font-size="23" class="inner_outer_para_edit2" xml:space="preserve" onclick="editOuterPara(2);" onmouseover="this.style.fill='#FFFFFF'; $(this.id + '_2').style.fillOpacity='100'; highLightBlock(2);" onmouseout="this.style.fill='#888888'; $(this.id + '_2').style.fillOpacity='0'; deHighLightBlock(2);">...</text>
</g>
<g id="OUTER_PARA_3" onclick="" onmouseover="highLightBlock(3);" onmouseout="deHighLightBlock(3);" style="cursor:default;">
<rect id="RT_3_1" x="1325" y="373" rx="21" width="357" height="150" class="outer_para1" />
<rect id="RT_3_2" x="1320" y="368" rx="21" width="357" height="150" class="outer_para2" />
<image id="O_P3_PIC" x="1330" y="378" width="337" height="130" style="display: none;" />
<text id="O_P3_T0" x="1340" y="388" xml:space="preserve" class="outer_para3">[3]</text>
<text id="O_P3_T1_1" x="1362" y="430" xml:space="preserve" class="outer_para4"></text>
<text id="O_P3_T1_2" x="1360" y="428" xml:space="preserve" class="outer_para5"></text>
<text id="O_P3_T2" x="1350" y="464" xml:space="preserve" class="outer_para6"></text>
<text id="O_P3_T3" x="1350" y="493" xml:space="preserve" class="outer_para7"></text>
<g>
<title>打开【链接】:2种方式:①鼠标或触屏【点击】本图元;②播放到当前位置时,按【回车】,或者,连按2次【右箭头】或【下一页】或 翻页笔【下一页】</title>
<text id="O_P3_LM" x="1364" y="513" class="inner_outer_para_edit3" onmouseover="this.style.fill='#FF0000'; highLightBlock(3);" onmouseout="this.style.fill='#888888'; deHighLightBlock(3);">»»»</text>
</g>
</g>
<g>
<title>编辑【外部关联参量 3】</title>
<rect id="O_P3_T4_2" x="1627" y="492" rx="0" width="25" height="20" class="inner_outer_para_edit1" />
<text id="O_P3_T4" x="1640" y="503" font-size="23" class="inner_outer_para_edit2" xml:space="preserve" onclick="editOuterPara(3);" onmouseover="this.style.fill='#FFFFFF'; $(this.id + '_2').style.fillOpacity='100'; highLightBlock(3);" onmouseout="this.style.fill='#888888'; $(this.id + '_2').style.fillOpacity='0'; deHighLightBlock(3);">...</text>
</g>
<g id="OUTER_PARA_4" onclick="" onmouseover="highLightBlock(4);" onmouseout="deHighLightBlock(4);" style="cursor:default;">
<rect id="RT_4_1" x="1325" y="542" rx="21" width="357" height="150" class="outer_para1" />
<rect id="RT_4_2" x="1320" y="537" rx="21" width="357" height="150" class="outer_para2" />
<image id="O_P4_PIC" x="1330" y="547" width="337" height="130" style="display: none;" />
<text id="O_P4_T0" x="1340" y="557" xml:space="preserve" class="outer_para3">[4]</text>
<text id="O_P4_T1_1" x="1362" y="599" xml:space="preserve" class="outer_para4"></text>
<text id="O_P4_T1_2" x="1360" y="597" xml:space="preserve" class="outer_para5"></text>
<text id="O_P4_T2" x="1350" y="633" xml:space="preserve" class="outer_para6"></text>
<text id="O_P4_T3" x="1350" y="662" xml:space="preserve" class="outer_para7"></text>
<g>
<title>打开【链接】:2种方式:①鼠标或触屏【点击】本图元;②播放到当前位置时,按【回车】,或者,连按2次【右箭头】或【下一页】或 翻页笔【下一页】</title>
<text id="O_P4_LM" x="1364" y="682" class="inner_outer_para_edit3" onmouseover="this.style.fill='#FF0000'; highLightBlock(4);" onmouseout="this.style.fill='#888888'; deHighLightBlock(4);">»»»</text>
</g>
</g>
<g>
<title>编辑【外部关联参量 4】</title>
<rect id="O_P4_T4_2" x="1627" y="661" rx="0" width="25" height="20" class="inner_outer_para_edit1" />
<text id="O_P4_T4" x="1640" y="672" font-size="23" class="inner_outer_para_edit2" xml:space="preserve" onclick="editOuterPara(4);" onmouseover="this.style.fill='#FFFFFF'; $(this.id + '_2').style.fillOpacity='100'; highLightBlock(4);" onmouseout="this.style.fill='#888888'; $(this.id + '_2').style.fillOpacity='0'; deHighLightBlock(4);">...</text>
</g>
<g id="OUTER_PARA_5" onclick="" onmouseover="highLightBlock(5);" onmouseout="deHighLightBlock(5);" style="cursor:default;">
<rect id="RT_5_1" x="1325" y="711" rx="21" width="357" height="150" class="outer_para1" />
<rect id="RT_5_2" x="1320" y="706" rx="21" width="357" height="150" class="outer_para2" />
<image id="O_P5_PIC" x="1330" y="716" width="337" height="130" style="display: none;" />
<text id="O_P5_T0" x="1340" y="726" xml:space="preserve" class="outer_para3">[5]</text>
<text id="O_P5_T1_1" x="1362" y="768" xml:space="preserve" class="outer_para4"></text>
<text id="O_P5_T1_2" x="1360" y="766" xml:space="preserve" class="outer_para5"></text>
<text id="O_P5_T2" x="1350" y="802" xml:space="preserve" class="outer_para6"></text>
<text id="O_P5_T3" x="1350" y="831" xml:space="preserve" class="outer_para7"></text>
<g>
<title>打开【链接】:2种方式:①鼠标或触屏【点击】本图元;②播放到当前位置时,按【回车】,或者,连按2次【右箭头】或【下一页】或 翻页笔【下一页】</title>
<text id="O_P5_LM" x="1364" y="851" class="inner_outer_para_edit3" onmouseover="this.style.fill='#FF0000'; highLightBlock(5);" onmouseout="this.style.fill='#888888'; deHighLightBlock(5);">»»»</text>
</g>
</g>
<g>
<title>编辑【外部关联参量 5】</title>
<rect id="O_P5_T4_2" x="1627" y="830" rx="0" width="25" height="20" class="inner_outer_para_edit1" />
<text id="O_P5_T4" x="1640" y="841" font-size="23" class="inner_outer_para_edit2" xml:space="preserve" onclick="editOuterPara(5);" onmouseover="this.style.fill='#FFFFFF'; $(this.id + '_2').style.fillOpacity='100'; highLightBlock(5);" onmouseout="this.style.fill='#888888'; $(this.id + '_2').style.fillOpacity='0'; deHighLightBlock(5);">...</text>
</g>
<!-- 内部序参量指示签 -->
<g>
<rect id="IN_PR1" stroke-width="0" height="180" width="20" y="354" x="2" stroke="#000" fill="#AAAAAA" filter="url(#SHADOW2)" />
<rect id="IN_PR2" stroke-width="0" height="180" width="20" y="352" x="0" stroke="#000" fill="#666666" />
<text id="IN_MARK" xml:space="preserve" text-anchor="start" font-size="16" x="10" stroke-width="0" stroke="#000" fill="#ffffff" style="writing-mode: vertical-rl; cursor:default;">内部序参量</text>
</g>
<script type="text/javascript">
// 变色
var textElement1 = $('IN_MARK');
textElement1.addEventListener('mouseover', function () {
this.setAttribute('fill', 'rgb(255, 85, 0)');
});
textElement1.addEventListener('mouseout', function () {
this.setAttribute('fill', 'rgb(255, 255, 255)');
});
</script>
<g>
<title>编辑【左标签】</title>
<rect id="IN_MARK_CLICK_2" x="0" y="533" rx="0" width="20" height="15" class="inner_outer_para_edit1" />
<text id="IN_MARK_CLICK" x="10" y="541" font-size="23" class="inner_outer_para_edit2" xml:space="preserve"
onclick="editInMark();"
style="cursor:text;"
onmouseover="this.style.fill='#FFFFFF'; $(this.id + '_2').style.fillOpacity='100'; textElement1.setAttribute('fill', 'rgb(255, 85, 0)');"
onmouseout="this.style.fill='#888888'; $(this.id + '_2').style.fillOpacity='0'; textElement1.setAttribute('fill', 'rgb(255, 255, 255)');">...</text>-->
</g>
<!-- 外部关联参量指示签 -->
<g>
<rect id="OUT_PR1" stroke-width="0" height="180" width="20" y="354" x="1696" stroke="#000" fill="#AAAAAA" filter="url(#SHADOW2)" />
<rect id="OUT_PR2" stroke-width="0" height="180" width="20" y="352" x="1698" stroke="#000" fill="#666666" />
<text id="OUT_MARK" xml:space="preserve" text-anchor="start" font-size="16" x="1708" stroke-width="0" stroke="#000" fill="#ffffff" style="writing-mode: vertical-rl; cursor:default;">外部关联参量</text>
</g>
<script type="text/javascript">
// 变色