-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1103 lines (985 loc) · 42.2 KB
/
index.html
File metadata and controls
1103 lines (985 loc) · 42.2 KB
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>
<head>
<title>Decision Tree</title>
<meta charset="utf-8" />
<meta name="description" content="Person of Interest theme components." />
<meta name="viewport" content="width=device-width" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
<link rel="stylesheet" href="css/w3.css" />
<!-- <link rel="stylesheet" href="css/bootstrap-reboot.min.css" /> -->
<!-- <link rel="stylesheet" href="css/bootstrap-grid.min.css" /> -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/ekko-lightbox.css" />
<link href="https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed" rel="stylesheet">
<!-- the same font(s) isn't free :( -->
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/poi.css" />
</head>
<body>
<div id="bglayer"></div>
<div id="bglayer2"></div>
<div id="coverlayer"></div>
<!-- Page Container -->
<div class="w3-container w3-content container" style="max-width:1400px;margin-top:80px">
<div class="w3-col m12 col-md-12">
<hr class="poi-color-green poi-green-box-shadow-large" style="border-color: lightgreen;" />
<h2 id="machineheader" class="poi-color-green poi-green-text-shadow" style="font-weight:bold;text-align:center;">Machine</h2>
<hr class="poi-color-green poi-green-box-shadow-large" style="border-color: lightgreen;" />
</div>
<!-- Left Column -->
<div class="w3-col m6 col-md-6">
<div class="poi-block-machine poi-bg-dark poi-color-white">
<h3 class="title poi-color-red poi-red-box-shadow poi-red-text-shadow">Machine: Block</h3>
<div class="poi-content">
<span class="poi-status">Type:</span>
<span class="poi-status-value">Dark</span>
<br />
<span class="poi-status">Progressbar:</span>
<span class="poi-status-value">Dark</span>
</div>
</div>
<br />
<div class="poi-block-machine poi-bg-dark poi-color-white">
<div class="subsubtitle">Machine: Block - subsubtitle</div>
<div class="subtitle">Machine: Block - subtitle</div>
<div class="poi-content">
<p>Machine: Block content</p>
</div>
</div>
<br />
<div class="poi-block-machine2 poi-bg-lightdark poi-color-white">
<h3 class="title poi-white-text-shadow"><div class="poi-rec"></div>Machine: Block</h3>
<div class="poi-content">
<span class="poi-status">Type:</span>
<span class="poi-status-value">Light</span>
</div>
</div>
<br />
<div class="poi-block-machine2 poi-bg-lightdark poi-color-white">
<h6 class="title poi-white-text-shadow">Machine: Block - title</h6>
<div class="subtitle poi-bg-white poi-color-black">Machine: Block - subtitle</div>
<div class="poi-content">
<span class="poi-status">Progressbar:</span>
<span class="poi-status-value">Light</span>
</div>
</div>
<br />
<div class="poi-card-machine poi-bg-dark poi-color-white">
<h3 class="title poi-color-red poi-red-text-shadow">Machine:</h3>
<h6 class="subtitle poi-color-red poi-red-text-shadow">Card</h6>
<div class="poi-clear"></div>
<div class="poi-content">
<div class="poi-content-row">
<div class="poi-content-row-text">
<span class="poi-status">Type:</span>
</div>
<div class="poi-content-row-label poi-color-red poi-red-text-shadow">Dark</div>
</div>
<div class="poi-content-row">
<div class="poi-content-row-text">Progressbar:</div>
<div class="poi-content-row-label poi-color-red poi-red-text-shadow">Medium</div>
</div>
<div class="poi-clear"></div>
</div>
</div>
<br />
<div class="poi-card-machine poi-bg-lightdark poi-color-white">
<h3 class="title poi-color-red poi-red-text-shadow">Machine:</h3>
<h6 class="subtitle poi-color-red poi-red-text-shadow">Card</h6>
<div class="poi-clear"></div>
<div class="poi-content">
<div class="poi-content-row">
<div class="poi-content-row-text">
<span class="poi-status">Type:</span>
</div>
<div class="poi-content-row-label poi-color-red poi-red-text-shadow">Medium</div>
</div>
<br />
<p>Progressbar & Label: <span class="poi-label poi-bg-dark">Dark</span></p>
<p>Progressbar & Label: <span class="poi-label poi-bg-medium">Medium</span></p>
<p>Progressbar & Label: <span class="poi-label poi-bg-light">Light</span></p>
<p>Content: <span class="poi-label poi-bg-red">Mixed</span></p>
</div>
</div>
<br />
<div class="poi-card-machine poi-bg-extralight poi-color-white">
<h3 class="title poi-color-red poi-red-text-shadow">Machine:</h3>
<h6 class="subtitle poi-color-red poi-red-text-shadow">Card</h6>
<div class="poi-clear"></div>
<div class="poi-content">
<div class="poi-content-row">
<div class="poi-content-row-text">Type:</div>
<div class="poi-content-row-label">Light</div>
</div>
<div class="poi-content-row">
<div class="poi-content-row-text">Progressbar:</div>
<div class="poi-content-row-label">None</div>
</div>
<div class="poi-clear"></div>
</div>
</div>
<br />
<!-- End Left Column -->
</div>
<!-- Right Column -->
<div class="w3-col m6 col-md-6">
<!-- Machine: block - dark -->
<div class="poi-block-machine poi-bg-dark poi-color-white">
<h3 class="title poi-color-red poi-red-box-shadow poi-red-text-shadow">Terror Threat</h3>
<div class="poi-content">
<p>Percentage</p>
<div class="poi-progressbar-dark poi-bg-darkgray">
<div class="poi-progressbar-value poi-bg-red" style="width:19%;"></div>
<div class="poi-progressbar-value-text">19%</div>
</div>
</div>
</div>
<br />
<!-- Machine: block [2] - dark -->
<div class="poi-block-machine poi-bg-dark poi-color-white">
<div class="subsubtitle">Domestic call: 415-556-5293</div>
<div class="subtitle">Speech to text conversion:</div>
<div class="poi-content">
<p>Would kill to get that property ..</p>
</div>
</div>
<br />
<!-- Machine: block - light -->
<div class="poi-block-machine2 poi-bg-lightdark poi-color-white">
<h3 class="title poi-white-text-shadow"><div class="poi-rec"></div>Program: Babel</h3>
<div class="poi-content">
<span class="poi-status">Status:</span>
<span class="poi-status-value">Unknown</span>
</div>
</div>
<br />
<!-- Machine: block [2] - light -->
<div class="poi-block-machine2 poi-bg-lightdark poi-color-white">
<h6 class="title poi-white-text-shadow">Competing systems: Monitoring</h6>
<div class="subtitle poi-bg-white poi-color-black">Operational conflict potential</div>
<div class="poi-progressbar-light">
<div class="poi-progressbar-value poi-bg-red" style="width:30%;"></div>
<div class="poi-progressbar-value-text">30.44%</div>
</div>
</div>
<br />
<!-- Machine: card - dark -->
<div class="poi-card-machine poi-bg-dark poi-color-white">
<h3 class="title poi-color-red poi-red-text-shadow">Violence</h3>
<h6 class="subtitle poi-color-red poi-red-text-shadow">Critical</h6>
<div class="poi-clear"></div>
<div class="poi-content">
<p>Predicted</p>
<div class="poi-progressbar-medium poi-bg-lightgray">
<div class="poi-progressbar-value poi-bg-red" style="width:75%;"></div>
<div class="poi-progressbar-value-text poi-color-black">75%</div>
</div>
</div>
</div>
<br />
<!-- Machine: card - medium -->
<div class="poi-card-machine poi-bg-lightdark poi-color-white">
<h3 class="title poi-color-red poi-red-text-shadow">Larceny</h3>
<h6 class="subtitle poi-color-red poi-red-text-shadow">Critical</h6>
<div class="poi-clear"></div>
<div class="poi-content">
<p>Predicted: Cash</p>
<div class="poi-progressbar-dark poi-bg-darkgray">
<div class="poi-progressbar-value poi-bg-red" style="width:92%;"></div>
<div class="poi-progressbar-value-text">92%</div>
</div>
<p>Predicted: Jewelry</p>
<div class="poi-progressbar-medium poi-bg-lightgray">
<div class="poi-progressbar-value poi-bg-red" style="width:67%;"></div>
<div class="poi-progressbar-value-text poi-color-black">67%</div>
</div>
<p>Predicted: Artifact</p>
<div class="poi-progressbar-light">
<div class="poi-progressbar-value poi-bg-red" style="width:28%;"></div>
<div class="poi-progressbar-value-text">28.36%</div>
</div>
</div>
</div>
<br />
<!-- Machine: card - light -->
<div class="poi-card-machine poi-bg-extralight poi-color-white">
<h3 class="title poi-color-red poi-red-text-shadow">Identfied threat:</h3>
<h6 class="subtitle poi-color-red poi-red-text-shadow">Babel scanning network</h6>
<div class="poi-clear"></div>
<div class="poi-content">
<div class="poi-content-row">
<div class="poi-content-row-text">Location:</div>
<div class="poi-content-row-label">Unknown</div>
</div>
<div class="poi-content-row">
<div class="poi-content-row-text">Mode:</div>
<div class="poi-content-row-label">Defend with firewalls..</div>
</div>
<div class="poi-clear"></div>
</div>
</div>
<br />
<!-- End Right Column -->
</div>
<div class="w3-col m12 col-md-12">
<hr class="poi-blue-box-shadow-large" style="border-color: blue;" />
<h2 class="poi-color-blue poi-blue-text-shadow" style="font-weight:bold;text-align:center;">Both (systems)</h2>
<hr class="poi-blue-box-shadow-large" style="border-color: blue;" />
</div>
<div class="w3-col m3 col-md-3">
<div class="poi-box poi-color-white">
<h3 class="title poi-bg-black poi-color-white poi-white-text-shadow">Activity detected</h3>
<div class="poi-content">
<img src="img/team/john.png" alt="John portrait" />
<div class="poi-content-row">
<div class="poi-content-row-text poi-color-green poi-green-text-shadow">Name:</div>
<div class="poi-content-row-label poi-bg-green">John Reese</div>
</div>
<div class="poi-content-row">
<div class="poi-content-row-text poi-color-yellow poi-yellow-text-shadow">Mode:</div>
<div class="poi-content-row-label poi-bg-yellow poi-color-black">Tracking..</div>
</div>
</div>
<h3 class="footer-title"> </h3>
</div>
</div>
<div class="w3-col m3 col-md-3">
<div class="poi-box poi-color-white">
<h3 class="title poi-bg-black poi-color-white">Irrelevant</h3>
<div class="poi-content">
<img src="img/team/root.png" alt="John portrait" />
<div class="poi-content-row">
<div class="poi-content-row-text">Projection:</div>
<div class="poi-content-row-label poi-bg-white poi-color-black">Non-Threat</div>
</div>
<div class="poi-content-row">
<div class="poi-content-row-text">Conclusion:</div>
<div class="poi-content-row-label poi-bg-white poi-color-black">Disregard</div>
</div>
</div>
<h3 class="footer-title">
<div class="poi-white-text-shadow">New data acquired</div>
<div class="poi-color-red poi-red-text-shadow">Classification error</div>
</h3>
</div>
</div>
<div class="w3-col m3 col-md-3">
<div class="poi-box poi-color-white">
<h3 class="title poi-bg-black poi-color-red poi-red-text-shadow"><div class="poi-deviant-icon"></div><span class="poi-color-white"> /// </span><span class="poi-red-text-shadow">Deviant</span></h3>
<div class="poi-content">
<img src="img/team/shaw.png" alt="John portrait" />
<div class="poi-content-row">
<div class="poi-content-row-text">Projection:</div>
<div class="poi-content-row-label poi-bg-red"><span>Threat</span></div>
</div>
<div class="poi-content-row">
<div class="poi-content-row-text">Conclusion:</div>
<div class="poi-content-row-label poi-bg-red">Eliminate</div>
</div>
</div>
<h3 class="footer-title">
<div class="poi-white-text-shadow">New data acquired</div>
<div class="poi-color-red poi-red-text-shadow">Classification error</div>
</h3>
</div>
</div>
</div>
<!-- end of 4 column layout for boxes -->
<div class="w3-col m12 col-md-12">
<div class="w3-col m6 col-md-6">
<div id="window1" class="poi-window poi-bg-dark poi-color-white">
<h3 class="title poi-bg-black poi-color-red">
Poi: Window
<ul class="poi-window-buttonlist">
<li class="poi-window-button poi-window-min-button" onclick="poiWindowMinimize('window1');"><i class="fa fa-minus"></i></li>
<li class="poi-window-button poi-window-max-button" onclick="poiWindowMaximize('window1');"><i class="fa fa-square-o"></i></li>
<li class="poi-window-button poi-window-close-button" onclick="document.getElementById('window1').style.display='none';"><i class="fa fa-times"></i></li>
</ul>
</h3>
<div id="window1content" class="poi-content">
<span class="poi-status">Type:</span>
<span class="poi-status-value">Dark</span>
<div class="poi-clear"></div>
</div>
</div>
</div>
<div class="w3-col m6 col-md-6">
<div id="window2" class="poi-window poi-bg-dark poi-color-white">
<h3 class="title poi-bg-black poi-color-red">
<div class="poi-deviant-icon"></div>
<span class="poi-color-white"> /// </span>
<span class="poi-red-text-shadow">Task - core db update</span>
<ul class="poi-window-buttonlist">
<li class="poi-window-button poi-window-min-button" onclick="poiWindowMinimize('window2');">●</li>
<li class="poi-window-button poi-window-max-button" onclick="poiWindowMaximize('window2');">●</li>
<li class="poi-window-button poi-window-close-button" onclick="document.getElementById('window2').style.display='none';">●</li>
</ul>
</h3>
<div id="window2content" class="poi-content">
<div class="poi-content-row">
<div class="poi-content-row-text">New data acquired:</div>
<div class="poi-content-row-label poi-bg-yellow"><span>New secondary assets list</span></div>
</div>
<div class="poi-content-row">
<div class="poi-content-row-text">Processing:</div>
<div class="poi-content-row-label poi-bg-green">Done</div>
</div>
<p>
Prepare assets localization tracking..
</p>
</div>
</div>
</div>
</div>
<div class="w3-col m12 col-md-12">
<div class="w3-col m6 col-md-6">
<div class="poi-terminal poi-bg-dark poi-color-white">
<div class="poi-content">
<div class="poi-content-row poi-color-red">
PoI: terminal
</div>
<div class="poi-content-row">
Type: dark
</div>
<div class="poi-content-row poi-color-blue">
just for text content
</div>
<div class="poi-content-row poi-color-orange">
and for fun..
</div>
<div class="poi-content-row poi-color-green">
Initial font # <span class="poi-promt">_</span>
</div>
</div>
</div>
</div>
<div class="w3-col m6 col-md-6">
<div class="poi-terminal poi-bg-dark poi-color-white">
<div class="poi-content">
<div class="poi-content-row">
phresh@machine $ ls
</div>
<div class="poi-content-row">
.
</div>
<div class="poi-content-row">
..
</div>
<div class="poi-content-row">
poi.sh
</div>
<div class="poi-content-row">
phresh@machine $ <span class="poi-promt poi-bg-white"> </span>
</div>
</div>
</div>
</div>
</div>
<div class="w3-col m12 col-md-12">
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<h2 class="poi-color-orange poi-orange-text-shadow" style="font-weight:bold;text-align:center;">Assets</h2>
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
</div>
<div class="w3-col m12 col-md-12" style="text-align: center;">
<br /><br />
<h3 style="text-align:center;color:white;">Machine</h3>
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<br /><br />
<button class="poi-button poi-hover-blink-before poi-button-machine-transparent">button 1</button>
<button class="poi-button poi-hover-blink-before poi-button-machine-white">button 2</button>
<button class="poi-button poi-hover-blink-before poi-button-machine-green">button 3</button>
<button class="poi-button poi-hover-blink-before poi-button-machine-yellow">button 4</button>
<button class="poi-button poi-hover-blink-before poi-button-machine-blue">button 5</button>
<button class="poi-button poi-hover-blink-before poi-button-machine-red">button 6</button>
<br /><br />
<a href="#" class="poi-button poi-hover-blink-before poi-button-machine-transparent">linkbutton 1</a>
<a href="#" class="poi-button poi-hover-blink-before poi-button-machine-white">linkbutton 2</a>
<a href="#" class="poi-button poi-hover-blink-before poi-button-machine-green">linkbutton 3</a>
<a href="#" class="poi-button poi-hover-blink-before poi-button-machine-yellow">linkbutton 4</a>
<a href="#" class="poi-button poi-hover-blink-before poi-button-machine-blue">linkbutton 5</a>
<a href="#" class="poi-button poi-hover-blink-before poi-button-machine-red">linkbutton 6</a>
<br /><br />
<h3 style="text-align:center;color:white;">Babel</h3>
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<br /><br />
<button class="poi-button poi-button-rotate poi-button-samaritan-orange">button 1</button>
<button class="poi-button poi-button-rotate poi-button-samaritan-orange2">button 2</button>
<button class="poi-button poi-button-rotate poi-button-samaritan-orange3">button 3</button>
<button class="poi-button poi-button-rotate poi-button-samaritan-white">button 4</button>
<button class="poi-button poi-button-rotate poi-button-samaritan-white2">button 5</button>
<button class="poi-button poi-button-rotate poi-button-samaritan-white3">button 6</button>
<br /><br />
<a href="#" class="poi-button poi-button-rotate poi-button-samaritan-orange">linkbutton 1</a>
<a href="#" class="poi-button poi-button-rotate poi-button-samaritan-orange2">linkbutton 2</a>
<a href="#" class="poi-button poi-button-rotate poi-button-samaritan-orange3">linkbutton 3</a>
<a href="#" class="poi-button poi-button-rotate poi-button-samaritan-white">linkbutton 4</a>
<a href="#" class="poi-button poi-button-rotate poi-button-samaritan-white2">linkbutton 5</a>
<a href="#" class="poi-button poi-button-rotate poi-button-samaritan-white3">linkbutton 6</a>
<br /><br />
<h3 style="text-align:center;color:white;">Sizes & Hovers</h3>
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<br /><br />
<button class="poi-button poi-button-small poi-button-samaritan-orange">button 1</button>
<button class="poi-button poi-button-small poi-button-samaritan-orange">button 2</button>
<button class="poi-button poi-button-small poi-button-samaritan-orange">button 3</button>
<button class="poi-button poi-button-small poi-button-samaritan-orange">button 4</button>
<button class="poi-button poi-button-small poi-button-samaritan-orange">button 5</button>
<br /><br />
<button class="poi-button poi-button-large poi-button-samaritan-orange">button 1</button>
<button class="poi-button poi-button-large poi-button-samaritan-orange">button 2</button>
<button class="poi-button poi-button-large poi-button-samaritan-orange">button 3</button>
<button class="poi-button poi-button-large poi-button-samaritan-orange">button 4</button>
<button class="poi-button poi-button-large poi-button-samaritan-orange">button 5</button>
<br /><br />
<h3 style="text-align:center;color:white;">Forms</h3>
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<br /><br />
<form class="poi-color-white poi-white-text-shadow" style="text-align:left;">
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputEmail">Email</label>
<input type="email" class="form-control poi-input" id="inputEmail" placeholder="Email">
</div>
<div class="form-group col-md-6">
<label for="inputPassword">Password</label>
<input type="password" class="form-control poi-input" id="inputPassword" placeholder="Password">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputEmail2">Email</label>
<input type="email" class="form-control poi-input" id="inputEmail2" placeholder="Email" readonly>
</div>
<div class="form-group col-md-6">
<label for="inputPassword2">Password</label>
<input type="password" class="form-control poi-input" id="inputPassword2" placeholder="Password" readonly>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputEmail3">Email</label>
<input type="email" class="form-control poi-input" id="inputEmail3" placeholder="Email" disabled>
</div>
<div class="form-group col-md-6">
<label for="inputPassword3">Password</label>
<input type="password" class="form-control poi-input" id="inputPassword3" placeholder="Password" disabled>
</div>
</div>
<div class="form-group">
<label for="exampleFormControlFile1" class="poi-file-upload">Example file input</label>
<input type="file" class="form-control-file" id="exampleFormControlFile1">
</div>
<div class="form-group">
<label for="exampleFormControlFile2">Example file input</label>
<input type="file" class="form-control-file poi-file-upload" id="exampleFormControlFile2" disabled>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Example textarea</label>
<textarea class="form-control poi-input" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputState1">Example select</label>
<select id="inputState1" class="form-control poi-input">
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
<div class="form-group col-md-6">
<label for="inputState2">Example select</label>
<select id="inputState2" class="form-control poi-input" disabled>
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
</div>
<div class="form-group">
<label for="exampleFormControlSelect">Example multiple select</label>
<select multiple class="form-control poi-input" id="exampleFormControlSelect">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="form-group">
<label for="exampleFormControlSelect2">Example multiple select</label>
<select multiple class="form-control poi-input" id="exampleFormControlSelect2" disabled>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
Check me out
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck2">
<label class="form-check-label" for="gridCheck2">
Check me out2
</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="inlineCheckbox3" value="option3" disabled>
<label class="form-check-label" for="inlineCheckbox3">3 (disabled)</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1" checked>
<label class="form-check-label" for="exampleRadios1">
Default radio
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios2" value="option2">
<label class="form-check-label" for="exampleRadios2">
Second default radio
</label>
</div>
<div class="form-check disabled">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios3" value="option3" disabled>
<label class="form-check-label" for="exampleRadios3">
Disabled radio
</label>
</div>
</div>
<button class="poi-button poi-hover-blink-before poi-button-machine-green">send</button>
<button type="reset" class="pull-right poi-button poi-button-rotate poi-button-machine-red">reset</button>
</form>
</div>
<div class="w3-col m12 col-md-12">
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
<h2 id="samplesheader" class="poi-color-orange poi-orange-text-shadow" style="font-weight:bold;text-align:center;">Samples</h2>
<hr class="poi-yellow-box-shadow-large" style="border-color: orange;" />
</div>
<!-- Left Column -->
<div class="w3-col m6 col-md-6">
<div class="poi-block-machine2 poi-bg-lightdark poi-color-white">
<h3 class="title poi-white-text-shadow">Side: W3</h3>
<div class="subtitle poi-bg-white poi-color-black"><div class="poi-rec"></div>Person of Interest Babel UI</div>
<iframe type="text/html" src="https://www.youtube.com/embed/mF8xkORV1jc?origin=http://example.com" frameborder="0" style="width:100%;height:360px;"></iframe>
</div>
<br />
<div class="poi-block-samaritan poi-bg-dark poi-color-white">
<h3 class="title poi-bg-darkgray poi-color-white poi-white-text-shadow">W3: Carousel</h3>
<div class="poi-content">
<!-- End Left Column -->
</div>
<!-- Right Column -->
<div class="w3-col m6 col-md-6">
<div class="poi-block-machine2 poi-bg-lightdark poi-color-white">
<h3 class="title poi-white-text-shadow">Side: Bootstrap</h3>
<div class="subtitle poi-bg-white poi-color-black"><div class="poi-rec"></div>Person Of Interest View From The Machine</div>
<iframe type="text/html" frameborder="0" style="width:100%;height:360px;"></iframe>
</div>
<br />
<div class="poi-block-samaritan poi-bg-dark poi-color-white">
<h3 class="title poi-bg-darkgray poi-color-white poi-white-text-shadow">Bootstarp: Carousel</h3>
<div class="poi-content">
</div>
</div>
<!-- End Right Column -->
</div>
<!-- End Page Container -->
</div>
<br />
<script src="js/jquery-3.3.1.slim.min.js"></script>
<!-- <script src="js/bootstrap.min.js"></script> -->
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/ekko-lightbox.min.js"></script>
<script src="js/poi.js"></script>
<style>
/* Just for this demo page */
#bglayer {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background-image: url('img/bg/samaritanbg.png');
background-size: 100% 100%;
z-index: -1;
}
#bglayer2 {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background-image: url('img/bg/lensgrid.png');
background-size: 100% 100%;
z-index: -1;
}
/* #coverlayer {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background-image: url('img/gallery/title.jpg');
background-size: 100% 100%;
z-index: 999;
} */
/* --- W3 styles --- */
.myGallerySlides {display: none}
.myGallerySlides img {vertical-align: middle;}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: rgb(255, 0, 0);
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* Caption text */
.text {
color: #ff0000;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 15px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #fd0606;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
position: relative;
bottom: 20px;
background-color: rgb(80, 80, 80);
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.w3active, .dot:hover {
background-color: #ff0000;
}
/* Fading animation */
.w3fade {
-webkit-animation-name: w3fade;
-webkit-animation-duration: 1.5s;
animation-name: w3fade;
animation-duration: 1.5s;
}
@-webkit-keyframes w3fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes w3fade {
from {opacity: .4}
to {opacity: 1}
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.prev, .next,.text {font-size: 11px}
}
.w3lbrow > .w3lbcolumn {
padding: 5px 8px;
}
.w3lbrow:after {
content: "";
display: table;
clear: both;
}
.w3lbcolumn {
float: left;
width: 25%;
}
/* The Modal (background) */
.w3lbmodal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: black;
}
/* Modal Content */
.w3lbmodal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
width: 90%;
max-width: 1200px;
}
/* The Close Button */
.w3lbclose {
color: red;
position: absolute;
top: 10px;
right: 25px;
font-size: 35px;
font-weight: bold;
cursor: pointer;
}
.w3lbclose:hover,
.w3lbclose:focus {
color: red;
text-decoration: none;
cursor: pointer;
}
.myLightboxSlides {
display: none;
}
/* Next & previous buttons */
.w3lbprev,
.w3lbnext {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -50px;
color: red;
font-weight: bold;
font-size: 20px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
/* Position the "next button" to the right */
.w3lbnext {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.w3lbprev:hover,
.w3lbnext:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Number text (1/3 etc) */
.w3lbnumbertext {
color: red;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.w3lbcaption-container {
text-align: center;
background-color: black;
padding: 2px 16px;
color: red;
}
.w3lbdemo {
opacity: 0.6;
cursor: pointer;
}
.w3lbactive,
.w3lbdemo:hover {
opacity: 1;
}
img.hover-shadow {
transition: 0.3s;
cursor: pointer;
}
.hover-shadow:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}
/* --- BS styles --- */
</style>
<script>
/* Just for this demo page */
var bglayer = document.getElementById('bglayer');
var bglayer2 = document.getElementById('bglayer2');
var machineheader = document.getElementById('machineheader');
var samplesheader = document.getElementById('samplesheader');
window.onscroll = function (e) {
var machineheaderViewportOffset = machineheader.getBoundingClientRect();
var machineheaderTop = machineheaderViewportOffset.top;
var machineheaderChangePoint = machineheaderTop - 200;
var samplesheaderViewportOffset = samplesheader.getBoundingClientRect();
var samplesheaderTop = samplesheaderViewportOffset.top;
var samplesheaderChangePoint = samplesheaderTop - 200;
if (machineheaderChangePoint > 0) {
bglayer.style.backgroundImage = 'url(img/bg/samaritanbg.png)';
bglayer.style.backgroundSize = '100% 100%';
bglayer.style.opacity = '1';
bglayer2.style.backgroundImage = 'url(img/bg/lensgrid.png)';
bglayer2.style.backgroundSize = '100% 100%';
} else if (machineheaderChangePoint < 0 && samplesheaderChangePoint > 0) {
bglayer.style.backgroundImage = 'url(img/bg/machinebg.png)';
bglayer.style.backgroundSize = '100% 100%';
bglayer.style.opacity = '0.9';
bglayer2.style.backgroundImage = 'url(img/bg/lensgrid-large.png)';
bglayer2.style.backgroundSize = '100% 100%';
} else {
bglayer.style.backgroundImage = 'url(img/bg/poibg.jpg)';
bglayer.style.backgroundSize = '100% 100%';
bglayer.style.opacity = '1';
bglayer2.style.backgroundImage = 'url(img/bg/lensgrid-small.png)';
bglayer2.style.backgroundSize = '100% 100%';
}
}
/* setTimeout( ()=> {
var loadCoverInterval = setInterval( ()=> {
var coverlayer = document.getElementById('coverlayer');
var coverlayerheight = coverlayer.clientHeight;
var newcoverlayerheight = coverlayerheight - 20;
if (coverlayerheight > 20) {
coverlayer.style.height = newcoverlayerheight + 'px';
} else {
coverlayer.style.display = 'none';
clearInterval(loadCoverInterval);
}
}, 50);
}, 800); */
function banner1(txtid) {
switch (txtid) {
case 1:
BabelWrite("demobanner", 0, "You are being watched !", "banner1", 2);
break;
case 2:
BabelWrite("demobanner", 0, "What are your commands ? ");
break;
}
}
banner1(1);
function banner2(txtid) {
switch (txtid) {
case 1:
BabelWrite("bannerdemo", 0, "Samaritan:_Banner", "banner2", 2);