-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
953 lines (929 loc) · 70.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Biomovies</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/icon.png" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="#page-top">
<img src="assets/img/icon_shadow_white_mini.png" id="logo-navbar" class="display-none" alt="..." />
Biomovies
</a>
<button class="navbar-toggler text-uppercase font-weight-bold bg-primary text-white rounded" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#gallery">Gallery</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#about">About</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#tutorials">Tutorials</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#help">Help</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#download">Download</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Avatar Image-->
<img class="masthead-avatar mb-5" src="assets/img/icon_shadow_white.png" alt="..." />
<!-- Masthead Heading-->
<h1 class="masthead-heading text-uppercase mb-0">Biomovies</h1>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Masthead Subheading-->
<p class="masthead-subheading font-weight-light mb-0">Cross-platform 3D biological structure video editor.</p>
<p class="mt-4" style="font-size: 16px; max-width: 750px;">This is a <strong>non-profit experimental</strong> software in its <strong>Beta</strong> version,
so be aware that some <strong>bugs</strong> can happen during the execution. Please <strong>save</strong> your projects as often as you
can and <a href="https://github.com/gbayarri/biomovies-app/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=" class="white-link fw-bold" target="_blank">let us know</a> if some bug is found.</p>
<p class="masthead-minheading font-weight-light mb-0">v<span class="version"></span> (<span class="versionName"></span>)</p>
</div>
</header>
<!-- Gallery Section-->
<section class="page-section portfolio" id="gallery">
<div class="container">
<!-- Portfolio Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Gallery</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-images"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Grid Items-->
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal9">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Virus envelope components</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery09.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal3">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">SARS-Cov-2 Spike RBD Opening</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery03.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal5">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Protein-membrane GABA system</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery05.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal6">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">AK conformational transition</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery06.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal7">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Unsupervised blind binding site prediction</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery07.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal8">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Nucleosome H3 Histone protein</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery08.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal1">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Triangular-shaped k-turns</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery01.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal2">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Transcription Factor Binding site contacts</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery02.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#galleryModal4">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">DNA fiber Montecarlo simulation</span></div>
</div>
<img class="img-fluid" src="assets/img/gallery/gallery04.png" alt="..." />
</div>
</div>
</div>
</div>
</section>
<!-- About Section-->
<section class="page-section bg-primary text-white mb-0" id="about">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white">About</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-circle-info"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row">
<div class="col-lg-6 ms-auto">
<p class="lead">
<strong>Biomovies</strong> is a 3D biological structure <strong>video editor</strong>.
This <strong>cross-platform</strong>, open-source software allows the <strong>creation of movies</strong> starting from a 3D biological structure file.
Additionally, the application accepts <strong>trajectories</strong> coupled with its corresponding topology.
</p>
<p class="lead">
Thanks to its <strong>simplicity</strong> and the <strong>intuitive</strong> interface, users can build <strong>videos</strong> easily and quickly.
</p>
</div>
<div class="col-lg-6 me-auto">
<p class="lead">
The application allows the creation of <strong>low resolution</strong> and <strong>HD videos</strong> as well as <strong>animated images</strong>.
The projects can be <strong>saved</strong> for the sake of sharing or editing them later.
Templates can be <strong>exported</strong> too, allowing to apply the <strong>same edition</strong> to different biological structures.
</p>
<p class="lead">
The project provides a broad <a href="https://biomovies-documentation.readthedocs.io/en/latest" class="white-link" target="_blank">documentation</a> as well as <a href="#gallery" class="white-link">demonstration videos</a> and <a href="#tutorials" class="white-link">tutorials</a>.
</p>
</div>
<div class="col-lg-12">
<img class="img-fluid" src="assets/img/about/about.png" alt="..." />
</div>
</div>
</div>
</section>
<!-- Tutorials Section-->
<section class="page-section portfolio" id="tutorials">
<div class="container">
<!-- Portfolio Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Tutorials</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-brands fa-youtube"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Grid Items-->
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#tutorialsModal1">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Create a basic movie</span></div>
</div>
<img class="img-fluid" src="assets/img/tutorials/tutorial01.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#tutorialsModal2">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Create a movie</span></div>
</div>
<img class="img-fluid" src="assets/img/tutorials/tutorial02.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#tutorialsModal3">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Create a movie with a trajectory</span></div>
</div>
<img class="img-fluid" src="assets/img/tutorials/tutorial03.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#tutorialsModal4">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Playing with representations</span></div>
</div>
<img class="img-fluid" src="assets/img/tutorials/tutorial04.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#tutorialsModal5">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Timeline menu at a glance</span></div>
</div>
<img class="img-fluid" src="assets/img/tutorials/tutorial05.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#tutorialsModal6">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i><br><span class="minitit-gallery">Trajectory settings</span></div>
</div>
<img class="img-fluid" src="assets/img/tutorials/tutorial06.png" alt="..." />
</div>
</div>
</div>
</div>
</section>
<!-- Help Section-->
<section class="page-section bg-primary text-white mb-0" id="help">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white">Help</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-circle-question"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8">
<p class="lead">
How to <a href="https://biomovies-documentation.readthedocs.io/en/latest/installation.html" class="white-link" target="_blank">install the binary</a>?
Which are the <a href="https://biomovies-documentation.readthedocs.io/en/latest/introduction.html#software-hardware-requirements" class="white-link" target="_blank">hardware requirements</a>?
Is it easy to <a href="https://biomovies-documentation.readthedocs.io/en/latest/get-started.html#new-project" class="white-link" target="_blank">start a new project</a>?
And to <a href="https://biomovies-documentation.readthedocs.io/en/latest/create_videos.html" class="white-link" target="_blank">export the videos</a>?
How the <a href="https://biomovies-documentation.readthedocs.io/en/latest/interface.html#timeline" class="white-link" target="_blank">timeline</a> is working?
Can I <a href="https://biomovies-documentation.readthedocs.io/en/latest/interface.html#keyframes-clips" class="white-link" target="_blank">modify the representation</a> of the molecule?
How about the <a href="https://biomovies-documentation.readthedocs.io/en/latest/get-started.html#new-project-with-trajectory" class="white-link" target="_blank">trajectories</a>, can
I <a href="https://biomovies-documentation.readthedocs.io/en/latest/interface.html#trajectories" class="white-link" target="_blank">custom</a> their behaviour?
Does it really worth it to create a <a href="https://biomovies-documentation.readthedocs.io/en/latest/get-started.html#import-template" class="white-link" target="_blank">template</a>?
Where do I find the <a href="https://biomovies-documentation.readthedocs.io/en/latest/utilities.html#faqs" class="white-link" target="_blank">Frequently Asked Questions</a>,
the application <a href="https://biomovies-documentation.readthedocs.io/en/latest/utilities.html#shortcuts" class="white-link" target="_blank">shortcuts</a> or
some <a href="https://biomovies-documentation.readthedocs.io/en/latest/utilities.html#tips" class="white-link" target="_blank">tips</a> for getting the most out of the software?
</p>
<p class="lead">
Don't worry, the project provides a <strong>broad documentation</strong> accessible clicking the buttons below:
</p>
</div>
</div>
<div class="text-center" id="help-btns-container">
<a class="btn btn-xl btn-secondary btn-secondary-white-hover mt-4" href="https://biomovies-documentation.readthedocs.io/en/latest" target="_blank">
<i class="fa-solid fa-book"></i>
Online documentation
</a>
<a class="btn btn-xl btn-secondary btn-secondary-white-hover ms-2 mt-4" href="https://biomovies.readthedocs.io/_/downloads/en/latest/pdf/" target="_blank">
<i class="fa-solid fa-file-pdf"></i>
Open in PDF
</a>
</div>
</div>
</section>
<!-- Download Section-->
<section class="page-section" id="download">
<div class="container">
<!-- Download Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Download</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-download"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Download Section Content-->
<div class="row">
<div class="col-lg-12">
<p class="lead">Click the buttons below to <strong>download</strong> the multiple platform binaries of the <strong>Biomovies</strong> software.
<strong>Latest version</strong> is <span class="badge badge-danger">v<span class="version"></span></span>. <br>
Please visit the <a href="https://biomovies-documentation.readthedocs.io/en/latest/installation.html" target="_blank">installation section</a> of the documentation after downloading the corresponding binary.
</p>
</div>
</div>
<div class="row">
<div class="col-md-12" id="download-btns-container" style="display: flex; justify-content: space-evenly;">
<div class="dropdown mt-4">
<button class="btn btn-xl btn-outline-primary dropdown-toggle disabled" type="button" id="dropdownMenuButtonApple" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-brands fa-apple"></i>
macOS
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item disabled download-latest" href="#!" id="intel-dmg"><i class="fa-solid fa-download me-2"></i> macOS Universal</a></li>
<li><a class="dropdown-item disabled download-latest" href="#!" id="arm64-dmg"><i class="fa-solid fa-download me-2"></i> macOS Apple Silicon</a></li>
</ul>
</div>
<div class="dropdown mt-4">
<button class="btn btn-xl btn-outline-primary dropdown-toggle disabled" type="button" id="dropdownMenuButtonWin" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-brands fa-windows"></i>
Windows
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item disabled download-latest" id="exe" href="#!"><i class="fa-solid fa-download me-2"></i> Windows executable</a></li>
</ul>
</div>
<div class="dropdown mt-4">
<button class="btn btn-xl btn-outline-primary dropdown-toggle disabled" type="button" id="dropdownMenuButtonUbuntu" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-brands fa-ubuntu"></i>
Ubuntu
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item disabled download-latest" id="amd64-deb" href="#!"><i class="fa-solid fa-download me-2"></i> Ubuntu .deb file</a></li>
<li><a class="dropdown-item disabled download-latest" id="amd64-appimage" href="#!"><i class="fa-solid fa-download me-2"></i> Ubuntu .AppImage file</a></li>
</ul>
</div>
</div>
</div>
<!-- Download Section Content-->
<div class="row mt-5">
<div class="col-lg-12"><p class="lead">Older versions of the <strong>Biomovies</strong> software are available in this dropdown menu:</p></div>
</div>
<div class="row mt-2">
<div class="col-xl-5 col-lg-4">
<select class="form-select" disabled id="select-releases">
<option value="">-- Please select a release --</option>
</select>
</div>
<div class="col-xl-7 col-lg-8" id="sec-assets" style="display: flex; justify-content: flex-start; display:none;">
<div class="dropdown">
<button class="btn btn-xs btn-outline-primary dropdown-toggle disabled" type="button" id="dropdownMenuButtonAppleSec" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-brands fa-apple"></i>
macOS
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item disabled btn-sm download-sec" href="#!" id="intel-dmg-sec"><i class="fa-solid fa-download"></i> macOS Universal</a></li>
<li><a class="dropdown-item disabled btn-sm download-sec" href="#!" id="arm64-dmg-sec"><i class="fa-solid fa-download"></i> macOS Apple Silicon</a></li>
</ul>
</div>
<div class="dropdown">
<button class="btn btn-xs btn-outline-primary dropdown-toggle disabled" type="button" id="dropdownMenuButtonWinSec" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-brands fa-windows"></i>
Windows
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item disabled btn-sm download-sec" id="exe-sec" href="#!"><i class="fa-solid fa-download"></i> Windows executable</a></li>
</ul>
</div>
<div class="dropdown">
<button class="btn btn-xs btn-outline-primary dropdown-toggle disabled" type="button" id="dropdownMenuButtonUbuntuSec" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-brands fa-ubuntu"></i>
Ubuntu
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item disabled btn-sm download-sec" id="amd64-deb-sec" href="#!"><i class="fa-solid fa-download"></i> Ubuntu .deb file</a></li>
<li><a class="dropdown-item disabled btn-sm download-sec" id="amd64-appimage-sec" href="#!"><i class="fa-solid fa-download"></i> Ubuntu .AppImage file</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Footer-->
<footer class="footer text-center">
<div class="container">
<div class="row">
<!-- Footer Contact-->
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Contact</h4>
<p class="lead mb-0">
<a class="btn btn-primary" href="https://github.com/gbayarri/biomovies-app/issues" target="_blank">
<i class="fab fa-fw fa-github"></i>
Click here
</a>
</p>
</div>
<!-- Footer About Text-->
<div class="col-lg-4">
<h4 class="text-uppercase mb-4">About Biomovies</h4>
<p class="lead mb-0">
Biomovies is a free to use, GNU GPL v3.0 licensed software created by the
<a href="https://mmb.irbbarcelona.org/" target="_blank">MMB group</a> at the <a href="https://irbbarcelona.org/" target="_blank">IRB Barcelona</a>.
</p>
</div>
<!-- Footer Social Icons-->
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Funding</h4>
<a class="btn btn-outline-light btn-social mx-1" href="https://bioexcel.eu/" target="_blank"><img class="img-funding" src="assets/img/footer/bioexcel.png" alt="..." /></a>
<a class="btn btn-outline-light btn-social mx-1" href="https://inb-elixir.es/" target="_blank"><img class="img-funding" src="assets/img/footer/elixir.png" alt="..." /></a>
<a class="btn btn-outline-light btn-social mx-1" href="https://mddbr.eu/" target="_blank"><img class="img-funding" src="assets/img/footer/mddb.png" alt="..." /></a>
<a class="btn btn-outline-light btn-social mx-1" href="https://mmb.irbbarcelona.org/" target="_blank"><img class="img-funding" src="assets/img/footer/mmb.png" alt="..." /></a>
<a class="btn btn-outline-light btn-social mx-1" href="https://www.irbbarcelona.org/" target="_blank"><img class="img-funding" src="assets/img/footer/irb.png" alt="..." /></a>
</div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<div class="copyright py-4 text-center text-white">
<div class="container"><small><span id="year"></span> © <a href="https://mmb.irbbarcelona.org/" target="_blank">Molecular Modeling and Bioinformatics Group</a></small></div>
</div>
<!-- Gallery Modals-->
<!-- Gallery Modal 1-->
<div class="portfolio-modal modal fade" id="galleryModal1" tabindex="-1" aria-labelledby="galleryModal1" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Triangular-shaped k-turns</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/el2Qg4BAoNM?si=rQRvMt0cNiUVAKOa" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Journey through the association of three two-k-turn units forming a triangular-shaped structure. PDB Code 5G4U.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 2-->
<div class="portfolio-modal modal fade" id="galleryModal2" tabindex="-1" aria-labelledby="galleryModal2" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Transcription Factor Binding site contacts</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/S5YcSW3ZUWk?si=2bC6Fo31nhEKv2wt" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">View of Arginine/Lysine contacts in a selection of Transcription Factor binding sites. PDB Codes 1A66, 1A0A, 1CDW.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 3-->
<div class="portfolio-modal modal fade" id="galleryModal3" tabindex="-1" aria-labelledby="galleryModal3" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">SARS-Cov-2 Spike RBD Opening</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/kA9sKScqTDY?si=cycWGZezpEnTwwXu" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Simulation of the Receptor Binding Domain (RBD) opening from the SARS-Cov-2 Spike protein before infection. PDB Code 6VXX.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 4-->
<div class="portfolio-modal modal fade" id="galleryModal4" tabindex="-1" aria-labelledby="galleryModal4" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">DNA fiber Montecarlo simulation</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/5WPa9s8HD8U?si=glFjS-T0jQ6dAUTF" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Coarse-Grained trajectory of a long DNA fiber with 4 proteins attached, obtained from MonteCarlo MCDNA simulations. Protein PDB Codes 1WTR, 3ZHM, 1BNZ, 1VFC.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 5-->
<div class="portfolio-modal modal fade" id="galleryModal5" tabindex="-1" aria-labelledby="galleryModal5" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Protein-membrane GABA system</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/pBK5TBCWzMo?si=QJIrsu66jBTuNcYD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Protein-membrane system for the human gamma-aminobutyric acid receptor, taken from MemProtMD database. PDB Code 4COF.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 6-->
<div class="portfolio-modal modal fade" id="galleryModal6" tabindex="-1" aria-labelledby="galleryModal6" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">AK conformational transition</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/nMxMfyTsxgU?si=c2G3lZBOwWn4DPKz" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Conformational transition of the Adenylate Kinase enzyme, computed with the GOdMD tool. PDB Codes 1AKE (Closed conformation), 4AKE (Open conformation).</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 7-->
<div class="portfolio-modal modal fade" id="galleryModal7" tabindex="-1" aria-labelledby="galleryModal7" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Unsupervised blind binding site prediction</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/xylAQVTfeXk?si=qxMQdKJ9svlXkJun" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Binding site prediction from unsupervised blind docking using hamiltonian Replica Exchange technique. PDB Code 3TNE.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 8-->
<div class="portfolio-modal modal fade" id="galleryModal8" tabindex="-1" aria-labelledby="galleryModal8" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Nucleosome H3 Histone protein</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/SS9QYXp8MU4?si=1IHlV5aoQ_gSD9ZD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Highlight of the H3 Histone protein from the Nucleosome system. PDB Code 1KX5.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Gallery Modal 9-->
<div class="portfolio-modal modal fade" id="galleryModal9" tabindex="-1" aria-labelledby="galleryModal9" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Virus envelope components</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/-cEe-mtP2VU?si=vcSTDwhv83HPRgb2" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">Dissection of a virus envelope molecule components, from its constituent proteins to the complete outermost layer. Venezuelan Equine Encephalitis virus (VEEV), PDB Code 7SFV.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tutorials Modals-->
<!-- Tutorials Modal 1-->
<div class="portfolio-modal modal fade" id="tutorialsModal1" tabindex="-1" aria-labelledby="tutorialsModal1" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Create a movie with a transition between clips</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/fBZTpkL-j-I?si=6UUy1lSCGShfLyHp" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">In this tutorial we can see how easy is to <strong>create a movie</strong> with a transition between two clips with <strong>different representations and orientations</strong>. More <strong>information in the subtitles</strong> of the video, please <strong>enable</strong> them in case you have captions disabled in your <strong>personal settings</strong>.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tutorials Modal 2-->
<div class="portfolio-modal modal fade" id="tutorialsModal2" tabindex="-1" aria-labelledby="tutorialsModal2" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Create a movie with different transitions and representations</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/3QKjLADyqoI?si=qwpYP0nCrcEDgNug" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">In this tutorial we <strong>create a movie</strong> with different clips and representations with <strong>custom selections</strong>. We add different <strong>transitions</strong> such as transitions between clips and <strong>fades</strong> as well. More <strong>information in the subtitles</strong> of the video, please <strong>enable</strong> them in case you have captions disabled in your <strong>personal settings</strong>.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tutorials Modal 3-->
<div class="portfolio-modal modal fade" id="tutorialsModal3" tabindex="-1" aria-labelledby="tutorialsModal3" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Create a movie with a topology and a trajectory</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/PZPbqmwKfzI?si=L2rLMmIt7jrMJii8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">In this tutorial we <strong>create a movie</strong> with different clips and representations and custom selections providing a <strong>trajectory</strong> and its corresponding <strong>topology</strong>. We see in deep how to modify the <strong>trajectory parameters</strong>. More <strong>information in the subtitles</strong> of the video, please <strong>enable</strong> them in case you have captions disabled in your <strong>personal settings</strong>.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tutorials Modal 4-->
<div class="portfolio-modal modal fade" id="tutorialsModal4" tabindex="-1" aria-labelledby="tutorialsModal4" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Play with all the options provided in the representations</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/ayFxjHrl5pw?si=xqgInZ5jqlz7Oorf" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">In this tutorial we review the different <strong>options</strong> provided for the sake of creating <strong>representations</strong>. As we can see, a <strong>distance based selection</strong> is easy to implement. More <strong>information in the subtitles</strong> of the video, please <strong>enable</strong> them in case you have captions disabled in your <strong>personal settings</strong>.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tutorials Modal 5-->
<div class="portfolio-modal modal fade" id="tutorialsModal5" tabindex="-1" aria-labelledby="tutorialsModal5" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">See the Timeline menu options at a glance</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/LgRZVjD-6J8?si=0tU7zJPNlNXMFOzK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">In this tutorial we see all the <strong>options</strong> given by the <strong>Timeline menu</strong>. More <strong>information in the subtitles</strong> of the video, please <strong>enable</strong> them in case you have captions disabled in your <strong>personal settings</strong>.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tutorials Modal 6-->
<div class="portfolio-modal modal fade" id="tutorialsModal6" tabindex="-1" aria-labelledby="tutorialsModal6" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h5 class="portfolio-modal-title text-secondary text-uppercase mb-0">Modify trajectory settings</h5>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa-solid fa-photo-film"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<iframe class="yt-container" src="https://www.youtube.com/embed/K3CigLSiUUo?si=BzTVHSGFgQnMnYT0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- Portfolio Modal - Text-->
<p class="my-4">In this tutorial we see how to modify different <strong>trajectory settings</strong> such as <strong>range</strong>, <strong>step</strong>, <strong>timeout</strong> or <strong>play in reverse</strong>. Also it's shown how to <strong>fit a whole trajectory</strong> in a given <strong>clip</strong>. More <strong>information in the subtitles</strong> of the video, please <strong>enable</strong> them in case you have captions disabled in your <strong>personal settings</strong>.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<button
type="button"
class="btn btn-primary"
id="btn-back-to-top"
>
<i class="fas fa-arrow-up"></i>
</button>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>