-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1065 lines (906 loc) · 50.9 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
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="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Through the Gaze</title>
<!-- Favicons -->
<link href="assets/img/view.png" rel="icon">
<link href="assets/img/view.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Teko:wght@400;500&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Kalam:wght@300;400;700&display=swap"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Variables CSS Files -->
<link href="assets/css/light-variables.css" rel="stylesheet" id="cssmode">
<!-- Template Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<!-- amCharts -->
<script src="https://cdn.amcharts.com/lib/5/index.js"></script>
<script src="https://cdn.amcharts.com/lib/5/xy.js"></script>
<script src="https://cdn.amcharts.com/lib/5/themes/Animated.js"></script>
<script src="https://cdn.amcharts.com/lib/5/percent.js"></script>
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> -->
</head>
<body>
<!-- MODALS FOR THE "CHARACTERS" VISUALIZATIONS -->
<!-- Modal Content Male -->
<div class="modal fade" id="maleModal" tabindex="-1" aria-labelledby="maleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content" id="wc-modal">
<div class="modal-header">
<h5 class="modal-title" id="maleModalLabel">Adjectives associated with male characters</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img class="modal-wc" src=Data/Descriptions/wordclouds/male-wc-final.png>
</div>
</div>
</div>
</div><!-- End Modal Content Male-->
<!-- Modal Content Female -->
<div class="modal fade" id="femaleModal" tabindex="-1" aria-labelledby="femaleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content" id="wc-modal">
<div class="modal-header">
<h5 class="modal-title" id="femaleModalLabel">Adjectives associated with female characters</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img class="modal-wc" src=Data/Descriptions/wordclouds/female-wc-final.png>
</div>
</div>
</div>
</div><!-- End Modal Content Female-->
<!-- Menu -->
<div class="overlay-navigation">
<nav role="navigation">
<ul>
<li><a href="#about" onclick="changeIcon(1)">About</a></li>
<li><a href="#project" onclick="changeIcon(2)">Project</a></li>
<li><a href="#data" onclick="changeIcon(3)">Data</a></li>
<li><a href="#viz" onclick="changeIcon(4)">Viz</a></li>
<li><a href="#further" onclick="changeIcon(5)">further</a></li>
</ul>
</nav>
</div>
<!-- Hamburger Menu -->
<div class="open-overlay">
<span class="bar-top"></span>
<span class="bar-middle"></span>
<span class="bar-bottom"></span>
</div>
<!-- ======= Hero Section ======= -->
<section id="hero-fullscreen" class="hero-fullscreen d-flex align-items-center zoom header-zoom" style="padding: 0;">
<!-- You cannot scale down the whole section because then other sections will go on top and it will look like a hot mess-->
<div class="hero-fullscreen-layer align-items-center zoom">
<!-- removed d-flex to make eye full page in background -->
<!-- <div class="scaleDown"> -->
<div class="container d-flex flex-column align-items-center position-relative header-text">
<!-- Removed data-aos="zoom-out" to allow for the gsap animation to work even for the text -->
<h2 class="hero-fullscreen-text">THROUGH THE GAZE</h2>
<p class="hero-fullscreen-text">the male gaze in mainstream cinema</p>
<div id="target"><img src="assets/img/color-palette.jpg"></div>
</div>
<div class="image image-2">
<img id="eye-img" src="assets/img/eye-drawing-2006.svg">
</div>
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- Eyes sidebar -->
<div class="icons-sidebar flex-column">
<a href="#about" onclick="changeIcon(1)" style="filter:invert(1);"><img id="icon1"
src="assets/img/eye-nav/eye1.svg" style="color:var(--color-default);"></a>
<a href="#project" onclick="changeIcon(2)" style="filter:invert(1);"><img id="icon2"
src="assets/img/eye-nav/eye2.svg"></a>
<a href="#data" onclick="changeIcon(3)" style="filter:invert(1);"><img id="icon3"
src="assets/img/eye-nav/eye3.svg"></a>
<a href="#viz" onclick="changeIcon(4)" style="filter:invert(1);"><img id="icon4"
src="assets/img/eye-nav/eye4.svg"></a>
<a href="#further" onclick="changeIcon(5)" style="filter:invert(1);"><img src="assets/img/eye-nav/eye5.svg"></a>
</div>
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-header">
<div class="row">
<p>In a world ordered by <span class="underlined-red underlined-red--offset">sexual imbalance</span>,
pleasure in looking has been split between
<b><i>active/male</i></b> and <b><i>passive/female</i></b>.
</p>
</div>
<br>
<div class="row">
<p>There are three different looks associated with cinema: that of <b><i>the camera</i></b>
as it records the pro-filmic event, that of <b><i>the audience</i></b> as it watches the final product,
and that of <b><i>the characters</i></b> at each other within the screen illusion.</p>
</div>
</div>
<div id="categories" class="categories">
<div class="container">
<div class="row gy-4">
<div class="col-xl-4 col-md-7 d-flex" data-aos="zoom-out">
<div class="service-item position-relative">
<div class="icon"><i class="bi bi-people icon"></i></div>
<h4><a class="stretched-link">Audience</a></h4>
<p>The (male) spectators who are gazing at the image on the screen in a nearly voyeuristic act; female
spectators must, to enjoy cinema, choose to identify with the male protagonist and assume his
male-gaze perspective</p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-7 d-flex" data-aos="zoom-out" data-aos-delay="200">
<div class="service-item position-relative">
<div class="icon"><i class="bi bi-person icon"></i></div>
<h4><a class="stretched-link">Characters</a></h4>
<p>The (male) people in the film, interacting with each other throughout the story and encapsulating
the perspective of the screenwriters of the movie and reinforcing the functional basis of patriarchy
such as gender roles</p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-7 d-flex" data-aos="zoom-out" data-aos-delay="400">
<div class="service-item position-relative">
<div class="icon"><i class="bi bi-camera-reels icon"></i></div>
<h4><a class="stretched-link">Camera</a></h4>
<p>The factor that more clearly displays the female character as an erotic object of desire either for
the other characters in the filmed story or for the viewer (audience) of such story, linking the
concept of “male gaze” to that of scopophilia</p>
</div>
</div><!-- End Service Item -->
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- Moving film-strip -->
<a class="film-strip-wrap">
<img src="assets/img/film-strip.jpg" id="film-strip">
</a>
<!-- ======= Project Section ======= -->
<section id="project" class="about">
<div class="container" data-aos="fade-up">
<div class="section-header row">
<div class="col-md-8" style="float: right;">
<p>
With this project, our aim is to represent an overview on the presence of <span
class="underlined-teal underlined-teal--offset">the male gaze in mainstream Western cinematic
industry</span>, heavily influenced by the United States' cinema. Specifically, we will examine the ten
highest-grossing U.S. films for each decade from the 1940s to the 2010s.
</p>
<br>
<p>
While we acknowledge the existence of a well-developed alternative cinema, the impact of the U.S. culture
on the Western part of the world cannot be disputed and the impact of films on society and on one's
personal views is undeniable.
</p>
</div>
<div class="col-md-4">
<div id="carouselExampleFade" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/1.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/2.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/3.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/4.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/5.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/6.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/7.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/8.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="3500">
<img src="assets/img/gaze-carousel/9.png" class="d-block w-100" alt="...">
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Project Section -->
<h2 class="research-q" data-aos="fade-up">To what extent do popular films rely on the male gaze?</h2>
<!-- ======= Data Section ======= -->
<section id="data" class="about">
<div class="container" data-aos="fade-up">
<div class="section-header">
<p>
For our selected 80 films, we gathered data from different sources and based on the three different
perspectives associated with cinema as defined by Mulvey: <span
class="underlined-green underlined-green--offset">textual data</span> (film scripts and reviews, via web
scraping), but also <span class="underlined-green underlined-green--offset">metadata</span> (from Wikidata's
SPARQL endpoint).
</p>
<div id="clients" class="container clients" data-aos="zoom-out">
<div class="clients-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><img src="assets/img/clients/boxofficemojo.jpg" class="img-fluid" alt="">
</div>
<div class="swiper-slide"><img src="assets/img/clients/imdblogo.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/imsdb.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/scriptslug.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/simplyscripts.jpg" class="img-fluid" alt="">
</div>
<div class="swiper-slide"><img src="assets/img/clients/thenumbers.jpg" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/top_logo_scr.png" class="img-fluid" alt=""></div>
</div>
</div>
</div>
<p>Specifically, we analysed the films through: <span
class="underlined-green underlined-green--offset">script</span> analyses (examining the representation of
women, their descriptions and their dialogue percentage), <span
class="underlined-green underlined-green--offset">online reviews</span> analyses (focusing on the overall
reception of the film and on possible gender bias underlying the reviews), and <span
class="underlined-green underlined-green--offset">metadata</span> analysis (deepening the research on the
films' crews: the directors, screenwriters, costs and revenue)
</p>
</div>
<div class='letter-board'>
<h2></h2>
<a href='#'>
<h2>Films collected</h2>
<h1># of films : 80</h1>
</a>
<h1></h1>
<a href='#'>
<h2>Decades analysed</h2>
<h1># of decades: 8</h1>
<h1>1940s to 2010s</h1>
</a>
<h1></h1>
<a href='#'>
<h2>Most frequent genre</h2>
<h1>Action</h1>
<h1># of films: 23</h1>
</a>
<h1></h1>
</div>
</div>
</section><!-- End Data Section -->
<!-- ======= Viz Section ======= -->
<section id="viz" class="about">
<div class="letter">
<div class="container" data-aos="fade-up">
<div class="section-header row">
<p class="desc"> BLACK SCREEN. <br>
FADE UP: <br>
A studio opens the scene. From a single window comes a singular ray of light, that touches all that's inside the
room: a messy desk, walls covered
in posters and autographed pictures, an old sofa and a coffee table overflowing with used plastic cups,
tissues and post-its. <br>
Two figures are in the room. One of them is sitting on the wore-down sofa, while another person, who we
cannot yet see, emerges from the
corner: they seem to be engaged in an intense conversation.
</p>
<h2>DIRECTOR</h2>
<p class="line"> What are we going to do with it?</p>
<h2>SCREENWRITER</h2>
<p class="line"> First things first: don't panic, and let's discuss it. I need you to pay attention.</p>
<h2>DIRECTOR</h2>
<p class="line"> (sighs)<br>You're right. But it's our first movie, and I want it to be great.
</p>
<h2>SCREENWRITER</h2>
<p class="line"> And so do I. So, listen to me: let's go through our notes again.</p>
<p class="desc">They both look towards the table.</p>
<h2>SCREENWRITER (CONT'D)</h2>
<p class="line">So, where do you want to start?</p>
</div>
<div class="container" data-aos="fade-up">
<!-- Red notes to navigate -->
<ul class="nav nav-tabs-1 row gy-4 d-flex justify-content-center">
<li class="nav-item col-6 col-md-4">
<a class="nav-link active show paper red-note" data-bs-toggle="tab" data-bs-target="#tab-1">
<div class="tape-section"></div>
<p>Audience</p>
<div class="tape-section"></div>
<!-- </div> -->
</a>
</li><!-- End Tab 1 Nav -->
<li class="nav-item col-6 col-md-4">
<a class="nav-link paper red-note" data-bs-toggle="tab" data-bs-target="#tab-2">
<div class="tape-section"></div>
<p>Character</p>
<div class="tape-section"></div>
<!-- </div> -->
</a>
</li><!-- End Tab 2 Nav -->
<li class="nav-item col-6 col-md-4">
<a class="nav-link paper red-note" data-bs-toggle="tab" data-bs-target="#tab-3">
<div class="tape-section"></div>
<p>Camera</p>
<div class="tape-section"></div>
<!-- </div> -->
</a>
</li><!-- End Tab 3 Nav -->
</ul>
<div class="tab-content">
<!-- Audience -->
<div class="tab-pane active show" id="tab-1">
<div class="row gy-4">
<div class="order-2 order-lg-1" data-aos="fade-up" data-aos-delay="100">
<div class="section-header row">
<h2>DIRECTOR</h2>
<p class="line">
Okay, let's just get it out there: I'm terrified of bad reviews. An <span class="underlined-yellow underlined-yellow--offset">audience</span> can make or destroy
your career, and you can't do anything about it. It's not like you can control it.
</p>
<h2>SCREENWRITER</h2>
<p class="line">
I get you, okay? I loved "Star Wars III - Revenge of the Sith" and they completely bashed it on
<span class="underlined-yellow underlined-yellow--offset">IMDB</span>, while childish stuff like "Harry Potter and the Sorcerer's Stone" is idolized. I really
don't get it.
</p>
<!-- Audience barchart -->
<div id="AUDIENCE-Barchart"></div>
<h2>DIRECTOR</h2>
<p class="line">
Your first mistake was going on IMDB. Have you seen some of the stuff they write
about female characters or even actresses?
There are creeps out there.
</p>
<h2>SCREENWRITER</h2>
<p class="line">
You're right, but it's not just that: <span class="underlined-yellow underlined-yellow--offset">you won't find a completely offensive
audience, just a few problematic instances</span>.
We shouldn't worry about that.
</p>
<!-- Audience pie -->
<div id="AUDIENCE-Pie"></div>
<h2>DIRECTOR</h2>
<p class="line"> I still don't want them to hate on our characters. What if they start hating our
movie because there are women in it?</p>
<h2>SCREENWRITER</h2>
<p class="line"> Listen, it's not going to happen. I don't think that some insensitive language is
enough to destroy our movie's reputation.
This thing really makes you anxious, uh?</p>
<!-- Audience overlay -->
<div id="AUDIENCE-Overlay"></div>
</div>
</div>
</div>
</div>
<!-- End Audience -->
<!-- Characters -->
<div class="tab-pane" id="tab-2">
<div class="row gy-4">
<div class="order-2 order-lg-1">
<div class="section-header row">
<!-- Post-it Disclaimer -->
<div class="post-it">
<p class="note">
Keep in mind that <b style="font-weight: bold;">all the movies</b> which have been tested for
the Bechdel test have male directors (no matter their result in the test)!
</p>
</div><!-- End Post-it Disclaimer -->
<p class="desc"> The door slams open. A WOMAN enters the room: she seems annoyed. The two figures
are startled by the sudden interruption, it's not like it never happened before, but they
weren't expecting to see her so soon.</p>
<h2>WOMAN<br>(irritated)</h2>
<p class="line">I swear, I'm done!</p>
<h2>DIRECTOR / SCREENWRITER (at the same time)</h2>
<p class="line"> Your audition didn't go well?</p>
<h2>WOMAN</h2>
<p class="line"> I didn't even audition. The plot itself was kinda trashy, and there was just
another woman in the cast!</p>
<h2>SCREENWRITER</h2>
<p class="line"> (chuckles)<br> Well, that's unfortunate. The <span class="underlined-yellow underlined-yellow--offset">Bechdel Test</span> strikes
again.</p>
<div>
<canvas id="myChart"></canvas>
</div>
<h2>WOMAN (cont'd)</h2>
<p class="line"> I couldn't believe my eyes while I was reading the script. Only two female
characters, and all that they do is gush about the male protagonist.
<h2>DIRECTOR</h2>
<p class="line"> God, that's awful. I hoped we had overcome that with "Top Gun".</p>
<div>
<canvas id="myChart2"></canvas>
</div>
<!-- Bechdel movies tabs (passed or not) -->
<nav>
<div class="nav nav-tabs justify-content-center" id="nav-tab" role="tablist">
<button class="nav-link bechdel active" id="passed-tab" data-bs-toggle="tab"
data-bs-target="#passed" type="button" role="tab" aria-controls="passed"
aria-selected="true">Passed</button>
<button class="nav-link bechdel" id="failed-1-tab" data-bs-toggle="tab"
data-bs-target="#failed-1" type="button" role="tab" aria-controls="failed-1"
aria-selected="false">Failed rule
1</button>
<button class="nav-link bechdel" id="failed-2-tab" data-bs-toggle="tab"
data-bs-target="#failed-2" type="button" role="tab" aria-controls="failed-2"
aria-selected="false">Failed rule 2</button>
<button class="nav-link bechdel" id="failed-3-tab" data-bs-toggle="tab"
data-bs-target="#failed-3" type="button" role="tab" aria-controls="failed-3"
aria-selected="false">Failed rule 3</button>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<!-- Passed -->
<div class="tab-pane fade show active" id="passed" role="tabpanel" aria-labelledby="passed-tab">
<table class="table table-bordered">
<thead>
<th scope="col">#</th>
<th scope="col">Title</th>
<th scope="col">Year</th>
</thead>
<tbody id="t1"></tbody>
</table>
</div>
<!-- Failed-1 -->
<div class="tab-pane fade" id="failed-1" role="tabpanel" aria-labelledby="failed-1-tab">
<table class="table table-bordered">
<thead>
<th scope="col">#</th>
<th scope="col">Title</th>
<th scope="col">Year</th>
</thead>
<tbody id="t2"></tbody>
</table>
</div>
<div class="tab-pane fade" id="failed-2" role="tabpanel" aria-labelledby="failed-2-tab">
<table class="table table-bordered">
<thead>
<th scope="col">#</th>
<th scope="col">Title</th>
<th scope="col">Year</th>
</thead>
<tbody id="t3"></tbody>
</table>
</div>
<div class="tab-pane fade" id="failed-3" role="tabpanel" aria-labelledby="failed-3-tab">
<table class="table table-bordered">
<thead>
<th scope="col">#</th>
<th scope="col">Title</th>
<th scope="col">Year</th>
</thead>
<tbody id="t4"></tbody>
</table>
</div>
</div>
<!-- Character dialogue -->
<h2>SCREENWRITER</h2>
<p class="line"> Did you have enough screen time at least? Maybe you were a walking stereotype but
with a lot to say?</p>
<h2>WOMAN</h2>
<p class="line"> Nah, I had a few lines. And the <span class="underlined-yellow underlined-yellow--offset">dialogue</span> wasn't even interesting.</p>
<div>
<canvas id="myChart3"></canvas>
</div>
<!-- Female characters description -->
<h2>WOMAN (cont'd)</h2>
<p class="line"> Enough about my day. I don't want to think about it. What are you up to? I feel
like I've interrupted something serious.</p>
<h2>DIRECTOR</h2>
<p class="line"> Don't worry, but yeah, we are trying to put together our first movie.</p>
<h2>WOMAN</h2>
<p class="line">Oh yeah, you told me about that! How is it going?</p>
<h2>SCREENWRITER<br>(jokingly)</h2>
<p class="line">Hopefully better than the script you have read.</p>
<h2>WOMAN<br>(sarcastic)</h2>
<p class="line">Why, are you writing about "beautiful and attractive women" and "big and strong
men"?</p>
<h2>DIRECTOR</h2>
<p class="line"> Why is being beautiful or attractive a problem?</p>
<h2>WOMAN</h2>
<p class="line"> There's nothing wrong with that. It's a problem when attractive is all you're
allowed to be. Have you watched "Psycho"? Janet Leigh remains
beautiful even while she gets murdered.</p>
<!-- Word clouds -->
<div style="margin: 30px 0;">
<!-- Insert modal button -->
<!-- Button trigger modal -->
<button class="wc-button" type="button" data-bs-toggle="modal" data-bs-target="#maleModal">
<fig class="word-cloud">
<img class='word-cloud' src='Data/Descriptions/wordclouds/male-wc-final.png'>
<figcaption> Adjectives describing male characters </figcaption>
</fig>
</button>
<button class="wc-button" type="button" data-bs-toggle="modal" data-bs-target="#femaleModal">
<fig class="word-cloud">
<img class='word-cloud' src='Data/Descriptions/wordclouds/female-wc-final.png'>
<figcaption> Adjectives describing female characters </figcaption>
</fig>
</button>
<!-- End button -->
</div>
<div>
<canvas id="descriptionChart"></canvas>
</div>
<!-- Gaze score -->
<h2>SCREENWRITER</h2>
<p class="line"> Imagine if we <span class="underlined-yellow underlined-yellow--offset">ranked movies just basing ourselves off the script</span> a combination
of character descriptions, dialogue and even the Bechdel Test... I would like to see the
results!</p>
<h2>WOMAN</h2>
<p class="line"> Yeah, I can assure you that cinema would be completely different.</p>
<div>
<canvas id="myChart4"></canvas>
</div>
<h2>WOMAN (cont'd)</h2>
<p class="line"> Anyway, I'll leave you both to it. If I don't eat immediately, I'm afraid I'll
faint. Don't break your head over this, okay?</p>
<h2>SCREENWRITER</h2>
<p class="line"> That won't happen. But I'm not the one who is prone to freak out over nothing.
</p>
</div>
</div>
</div>
</div><!-- End Characters -->
<!-- Camera -->
<div class="tab-pane" id="tab-3">
<div class="row gy-4">
<div class="order-2 order-lg-1">
<div class="section-header row">
<p class="desc">The DIRECTOR sighs, he's visibly overwhelmed by all the possibilities.</p>
<h2>SCREENWRITER (cont'd)</h2>
<p class="line">First of all, I think it would be nice to work with someone else. They would
bring a new point of view to whatever story we want to tell.</p>
<h2>DIRECTOR</h2>
<p class="line">Any of your colleagues in mind?</p>
<h2>SCREENWRITER</h2>
<p class="line">A few come to mind, but I'm afraid that they all see the world through <span class="underlined-yellow underlined-yellow--offset">the same gaze</span>.</p>
<!-- CHART FOR WRITERS SPARQL -->
<div id="SPARQLchartWRT"></div>
<h2>DIRECTOR</h2>
<p class="line">Well, then I'm not interested in them. I want something different, new...
Something that doesn't scream traditional and patriarchal values.</p>
<h2>SCREENWRITER</h2>
<p class="line">So, no superheroes, cowboys or hypermasculine hunks?</p>
<h2>DIRECTOR</h2>
<p class="line"> (chuckles)<br> Definitely not, I think we've seen enough of that. No,
let's do something... Experimental.</p>
<!-- CHART FOR TOP 10 MG MOVIES GENRES -->
<div id="SPARQLchartMG1"></div>
<h2>SCREENWRITER</h2>
<p class="line">Wait... Weren't you the one terrified of going bankrupt because of a not well
received movie?</p>
<h2>DIRECTOR</h2>
<p class="line"> (stiffens up)<br> No. I mean, yes, it scares me. But I don't want
that to stop us from being good creators.</p>
<h2>DIRECTOR (cont'd)</h2>
<p class="line">Also, I don't think that a movie with different values than the mainstream is doomed to
fail. At least, I've never heard
of anything like this.</p>
<h2>SCREENWRITER</h2>
<p class="line">Happy to hear that you are not freaking out about it. And also yeah, you're right.
Keep in mind that <span class="underlined-yellow underlined-yellow--offset">a big production usually scores good box office's revenues</span>.</p>
<h2>DIRECTOR</h2>
<p class="line">Wait... Are we a big production?</p>
<h2>SCREENWRITER</h2>
<p class="line"> (sighs) Just forget it.</p>
<!-- CHART FOR MG MOVIES BOX OFFICE AND COST -->
<div id="SPARQLchartMG2"></div>
</div>
</div>
</div>
</div><!-- End Camera -->
</div>
</div>
<div id="further" class="section-header row" data-aos="fade-up">
<h2>DIRECTOR</h2>
<p class="line">Despite everything, I have my role models to follow: directors like me that go beyond
tradition, and <span class="underlined-yellow underlined-yellow--offset">explore new perspectives</span>.
You know, right now, from tv series to cinema, stories never heard before are being told: maybe they will
never be
as successful and mainstream as some of the blockbusters we talked about, but they have so much to
express...<br>
I hope that one day cinema will <span class="underlined-yellow underlined-yellow--offset">show the world as it is, and not just through one gaze</span>.
</p>
</div>
<!-- Video and definition -->
<div class="tape top-tape"></div>
<div class="container-fluid onfocus" data-aos="fade-up">
<div class="row g-0">
<div class="col-lg-6 video-play position-relative">
<a href="https://www.youtube.com/watch?v=d2npOOhhyH8" class="glightbox play-btn"></a>
<!-- ANOTHER INTERESTING LINK WE COULD USE: https://www.youtube.com/watch?v=GuGDWscjNus -->
</div>
<div class="col-lg-6">
<div class="content d-flex flex-column justify-content-center h-100">
<h3>The female gaze</h3>
<p class="fst-italic">
The "female gaze" is a theory referring to the issue of representing women as subjects having
agency, not anymore as simple sexual objects for the pleasure of the masculine, heterosexual
perspective.
</p>
</div>
</div>
</div>
</div>
<div class="tape bottom-tape"></div>
<div class="section-header row" data-aos="fade-up" style="padding:0;">
<h2>SCREENWRITER</h2>
<p class="line">Wow, that came out of nowhere and it's actually quite deep. Trying to steal my job?</p>
<p class="desc">They both laugh.</p>
<h2>SCREENWRITER (cont'd)</h2>
<p class="line">Jokes aside, you're right. It's time to shake this industry up. And we will do that, I
promise. Just like the directors that inspire you so much</p>
<p class="desc">An alarm interrupts their conversation: one of their smartphones buzzes, a notification on
its screen. It reads: "Time for a break!".
They both fall into the sofa, tired, and keep talking about their beloved movie for a bit. Outside, the
day slowly leaves space the night. </p>
<h2>THE END</h2>
</div>
<div class="row justify-content-center">
<div class="person-picture">
<div class="container-picture">
<div class="container-picture-inner">
<img class="circle-picture" src="assets/img/circle-people/vvvortex1.svg" />
<img class="img img2" src="assets/img/circle-people/celinesciamma.png" />
</div>
</div>
<div class="name">Céline Sciamma</div>
</div>
<div class="person-picture">
<div class="container-picture">
<div class="container-picture-inner">
<img class="circle-picture" src="assets/img/circle-people/vvvortex2.svg" />
<img class="img img3" src="assets/img/circle-people/phoebe.png" />
</div>
</div>
<div class="name">Phoebe Waller-Bridge</div>
</div>
<div class="person-picture">
<div class="container-picture">
<div class="container-picture-inner">
<img class="circle-picture" src="assets/img/circle-people/vvvortex3.svg" />
<img class="img img4" src="assets/img/circle-people/avaduvernay.png" />
</div>
</div>
<div class="name">Ava DuVernay</div>
</div>
</div>
</div>
</div>
</section><!-- End Viz Section -->
<!-- Download documentation -->
<div class="justify-content-center vhs-tape">
<a href="documentation/DOCUMENTATION.ipynb" download>
<img src="assets/img/skc_maxplay_vhs.jpg">
</a>
</div>
<div class="justify-content-center vhs-tape">
<a href="documentation/DATA.ipynb" download>
<img src="assets/img/sony_dynamicron_spine.jpg">
</a>
</div>
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>The team</h2>
</div>
<div class="row gy-5">
<div class="col-xl-3 col-md-5 d-flex" data-aos="zoom-in" data-aos-delay="200">
<div class="team-member">
<div class="member-img poster">
<img src="assets/img/team/team-1.png" class="img-fluid" alt="">
</div>
<div class="social flex-column team-1">
<a href="mailto:[email protected]"><i class="bi bi-envelope"></i></a>
<a href="https://www.linkedin.com/in/orsola-maria-borrini-362142253/" target="_blank"><i
class="bi bi-linkedin"></i></a>
<div class="assigned-tasks">
<p class="task task-team1">Web development</p>
<p class="task task-team1">SPARQL data retrieval</p>
</div>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-3 col-md-5 d-flex" data-aos="zoom-in" data-aos-delay="400">
<div class="team-member">
<div class="member-img poster">
<img src="assets/img/team/team-2.png" class="img-fluid" alt="">
</div>
<div class="social flex-column team-2">
<a href="mailto:[email protected]"
style="background-color:var(--color-palette-teal)"><i class="bi bi-envelope"></i></a>
<a href="https://www.linkedin.com/in/chloe-papadopoulou/" target="_blank"
style="background-color:var(--color-palette-teal)"><i class="bi bi-linkedin"></i></a>
<div class="assigned-tasks">
<p class="task task-team2">Script analyses</p>
</div>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-3 col-md-5 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img poster">
<img src="assets/img/team/team-3.png" class="img-fluid" alt="">
</div>
<div class="social flex-column team-3">
<a href="mailto:[email protected]"
style="background-color: var(--color-palette-green)"><i class="bi bi-envelope"></i></a>
<a href="https://www.linkedin.com/in/ahsansyedv101/" target="_blank"
style="background-color: var(--color-palette-green)"><i class="bi bi-linkedin"></i></a>
<div class="assigned-tasks">
<p class="task task-team3">Script analyses</p>
</div>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-3 col-md-5 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img poster">
<img src="assets/img/team/team-4.png" class="img-fluid" alt="">
</div>
<div class="social flex-column team-4">
<a href="mailto:[email protected]"
style="background-color: var(--color-palette-yellow)"><i class="bi bi-envelope"></i></a>
<a href="https://www.linkedin.com/in/francesca-budel-4a601a199/" target="_blank"
style="background-color: var(--color-palette-yellow)"><i class="bi bi-linkedin"></i></a>
<div class="assigned-tasks">
<p class="task task-team4">Web scraping</p>
<p class="task task-team4">Storytelling</p>
</div>
</div>
</div>
</div><!-- End Team Member -->
</div>
</div>
</section><!-- End Team Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="footer-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-2 col-md-6 footer-links">
<h4>Images and icons</h4>
<ul>
<li><i class="bi bi-chevron-bar-right"></i>Eye icons created by <a
href="https://www.flaticon.com/free-icons/eye" title="eye icons">torskaya - Flaticon</a></li>
<li><i class="bi bi-chevron-bar-right"></i>Eye SVG image in hero section from <a
href="https://www.onlygfx.com/eye-drawing-png-transparent-svg-vector/">OnlyGFX.com</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Web template</h4>
<ul>
<li><i class="bi bi-chevron-bar-right"></i>This website is built on the HTML5 template <a
href="https://bootstrapmade.com/herobiz-bootstrap-business-template/">"HeroBiz"</a> by <a
href="https://bootstrapmade.com/">BootstrapMade</a> and released under <a
href="https://opensource.org/license/mit/">MIT</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Source data</h4>
<ul>
<li><i class="bi bi-chevron-bar-right"></i>From <a href="https://www.boxofficemojo.com/">Box Office
Mojo</a>
and <a href="https://www.imdb.com">IMDB</a>, information courtesy of
<a href="https://www.imdb.com">IMDb</a>.
Used with <a href="https://www.imdb.com/conditions?ref_=helpms_ih_gi_usedata">permission.</a>
</li>
<li><i class="bi bi-chevron-bar-right"></i>From <a href="https://imsdb.com/">IMSDB</a>, <a
href="https://www.scriptslug.com/">Scriptslug</a>, <a
href="https://www.simplyscripts.com/">Simplyscripts</a>, <a href="https://www.the-numbers.com/">The
Numbers</a>, and <a href="https://www.scripts.com/">Scripts.com</a> under <a
href="https://www.copyright.gov/fair-use/#:~:text=Fair%20use%20is%20a%20legal,protected%20works%20in%20certain%20circumstances.">Fair
Use License.</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Published data</h4>
<ul>
<li><i class="bi bi-chevron-bar-right"></i>Licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Software</h4>
<ul>
<li>
<i class="bi bi-chevron-bar-right"></i>Chart.js: <a href="https://opensource.org/license/mit/">MIT
license</a>
</li>
<li><i class="bi bi-chevron-bar-right"></i>amCharts: <a
href="https://github.com/amcharts/amcharts5/blob/master/packages/shared/LICENSE">linkware license</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-legal text-center">
<div
class="container d-flex flex-column flex-lg-row justify-content-center justify-content-lg-between align-items-center"
style="
padding: 0 50px 0 50px;">
<div class="d-flex flex-column align-items-center align-items-lg-start">
<div class="copyright">
© Copyright <strong><span>Through the Gaze</span></strong>. All Rights Reserved
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License"
style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/80x15.png" /></a>
</div>
<div class="credits">
Through The Gaze is an end-of-course project for the <a
href="https://www.unibo.it/it/didattica/insegnamenti/insegnamento/2022/467047">"Information
Visualization"</a> course (2022/2023)
held by <a href="https://www.unibo.it/sitoweb/marilena.daquino2">Professor Marilena Daquino</a> within the
<a href="https://corsi.unibo.it/2cycle/DigitalHumanitiesKnowledge">Digital Humanities and Digital Knowledge
Master's Degree</a>
at <a href="https://www.unibo.it/it">Alma Mater Studiorum - University of Bologna</a><br>
<!-- All the links in the footer should remain intact. -->