-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposite.html
813 lines (758 loc) · 27.4 KB
/
composite.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url('https://fonts.googleapis.com/css?family=Gugi');
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
</style>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
</head>
<body>
<style>
html{
scroll-behavior: smooth;
}
.authorname{
color:black;
}
body{
background-image: url("http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/tilepattern.png");
background-repeat: repeat;
background-color:black;
overflow-x: hidden;
overflow-y: auto;
}
::-webkit-scrollbar-thumb {
background: yellow;
border-radius: 10px;
}
@media screen and (min-width: 960px){
::-webkit-scrollbar {
height: 5px;
width: 5px;
}
#intro-text-smallscreen{
display: none;
}
#article-container{
display: grid;
/* background-image: url("tilepattern.");
background-repeat: repeat; */
height: 95vh;
width: 100vw;
grid-template-columns: auto 10% 10% 10% 10% 10% 10% 10% auto;
grid-template-rows: 5% 2.5% 5% 5% fit-content(100%) 3.5% 30% fit-content(100%) 5% 10% 10%;
}
#article-title{
background-color: black;
padding: 0 1%;
border: 2px solid white;
font-family: 'Gugi', cursive;
color:rgb(208, 255, 0);
grid-column: 2 / 9;
grid-row: 3;
justify-self: center;
align-self: center;
font-size: 300%;
font-weight: bold;
}
#intro-text{
padding: 1% 0;
font-size: 100%;
font-family: 'Roboto Mono', monospace;
text-align: center;
background-color: black;
border: 2px solid white;
color: white;
grid-column: 2 / 9;
grid-row: 5;
}
#artist-container{
padding-top: 1%;
background-image: url("http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/coolaesthetic-two.png");
border: 2px solid white;
background-repeat: repeat;
scroll-behavior: smooth;
overflow-x: scroll;
overflow-y: hidden;
grid-column: 2 / 9;
grid-row: 7;
height: 30vh;
display: flex;
flex-direction: row;
align-self: center;
}
.artist:hover{
transform: scale(1.2);
}
.artist{
height: 25vh;
width: 30vw;
margin: 0 5%;
transition: transform .5s;
transform: scale(1.0);
}
img{
height: 30vh;
}
#bio-container{
/* background-color: rgb(0, 49, 15); */
background-image: url("http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/coolaesthetic-dark.png");
background-repeat: repeat;
grid-column: 2 /9;
grid-row: 8;
border: 2px solid white;
overflow-y: scroll;
height: 80vh;
}
.artist-bio{
color: black;
margin: 0 15%;
}
#arrow-right{
justify-self: center;
grid-column: 9;
grid-row: 7;
transform: scale(.7);
transition: transform .5s;
}
#arrow-right:hover{
/* grid-column: 9;
grid-row: 7; */
transform: scale(.9);
}
#arrow-left{
justify-self: center;
grid-column: 1;
grid-row: 7;
transform: scale(.7);
transition: transform .5s;
}
#arrow-left:hover{
/* grid-column: 1;
grid-row: 7; */
transform: scale(.9);
}
#return{
grid-column: 5;
grid-row: 9;
margin: 3%;
}
h2{
font-family: 'Gugi', cursive;
}
p{
background-color: white;
padding: 1% 1%;
border: 2px solid black;
font-family: 'Roboto Mono', monospace;
}
button{
background-color: black;
border: 2px solid white;
color: white;
width: 100%;
/* font-family: 'Gugi', cursive; */
font-family: 'Roboto Mono', monospace;
font-weight: bold;
white-space: nowrap;
padding: 0 3%;
transition: color .5s;
}
button:hover{
background-color: white;
color: black;
}
.heading-container{
background-color: white;
border: 2 px solid black;
}
.bioheading{
text-align: center;
/* background-color: white;
border: 2px solid black; */
margin-bottom: 0;
}
.writername{
text-align: center;
margin-top: 0;
/* font-family: 'Roboto Condensed', sans-serif; */
font-family: 'Gugi', cursive;
}
#homepage-footer{
grid-row: 10;
grid-column: 2 / 9;
}
.footer-container{
display: block;
height: 5vh;
background-color: black;
border: 2px solid white;
height: fit-content;
}
.footer-text{
background-color: black;
color: white;
border: none;
margin-bottom: 0;
}
.copyright{
background-color: black;
color: white;
margin-top: 0;
border:none;
}
a{
color: white;
transition: color .2s;
}
a:hover{
color: blueviolet;
}
}
@media screen and (max-width: 959px){
::-webkit-scrollbar {
height: 2px;
width: 3px;
}
.heading-container{
width: 100%;
background-color: white;
border: 2 px solid black;
margin-bottom: 1%;
}
.bioheading{
width: 100%;
text-align: center;
margin-bottom: 0;
}
.writername{
text-align: center;
margin-top: 0;
/* font-family: 'Roboto Condensed', sans-serif; */
font-family: 'Gugi', cursive;
}
#article-container{
overflow-x: hidden;
display: grid;
/* background-image: url("tilepattern.");
background-repeat: repeat; */
height: 100vh;
width: 100vw;
grid-template-columns: 100%;
grid-template-rows: 5% 5% 2.5% fit-content(100%) 10% 10% 5% fit-content(100%) fit-content(100%) 5% 10%; ;
}
#article-title{
background-color: black;
padding: 0 1%;
border: 2px solid white;
font-family: 'Gugi', cursive;
color:rgb(208, 255, 0);
grid-row: 2;
justify-self: center;
align-self: center;
font-size: 300%;
font-weight: bold;
}
#intro-text{
/* margin: 3% 0;
width: 90vw;
height: fit-content;
justify-self: center;
font-family: 'Roboto Mono', monospace;
text-align: center;
font-size: 125%;
background-color: black;
border: 2px solid white;
color: white;
grid-row: 4; */
display: none;
}
#intro-text-smallscreen{
margin: 3% 0;
width: 90vw;
height: fit-content;
justify-self: center;
font-family: 'Roboto Mono', monospace;
text-align: center;
font-size: 125%;
background-color: black;
border: 2px solid white;
color: white;
grid-row: 4;
}
#artist-container{
justify-self: center;
padding-top: 1%;
background-image: url("http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/coolaesthetic-two.png");
border: 2px solid white;
background-repeat: repeat;
scroll-behavior: smooth;
overflow-x: scroll;
overflow-y: hidden;
width: 90vw;
grid-row: 6;
height: 30vh;
display: flex;
flex-direction: row;
align-self: center;
}
.artist:click{
transform: scale(1.2);
}
.artist{
height: 25vh;
width: 30vw;
margin: 0 5%;
transition: transform .5s;
transform: scale(1.0);
}
img{
height: 30vh;
}
#bio-container{
/* background-color: rgb(0, 49, 15); */
padding-top: 10%;
background-image: url("http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/coolaesthetic-dark.png");
background-repeat: repeat;
grid-row: 8;
border: 2px solid white;
overflow-y: scroll;
height: 80vh;
width: 90vw;
justify-self: center;
}
.artist-bio{
font-size: 120%;
color: black;
margin: 0 10%;
}
#arrow-right{
display: none;
}
#arrow-left{
display: none;
}
#return{
width: 91vw;
justify-self: center;
grid-row: 10;
}
h2{
font-family: 'Gugi', cursive;
}
h3{
font-family: 'Roboto Condensed', sans-serif;
}
p{
background-color: white;
padding: 1% 1%;
border: 2px solid black;
font-family: 'Roboto Mono', monospace;
}
button{
background-color: black;
border: 2px solid white;
color: white;
width: 100%;
/* font-family: 'Gugi', cursive; */
font-family: 'Roboto Mono', monospace;
font-weight: bold;
white-space: nowrap;
padding: 0 3%;
}
button:hover{
background-color: white;
color: black;
}
.bioheading{
text-align: center;
}
#homepage-footer{
grid-row: 11;
width: 91vw;
justify-self: center;
}
.footer-container{
display: block;
height: 5vh;
background-color: black;
border: 2px solid white;
height: fit-content;
}
.footer-text{
margin: 0% 5%;
background-color: black;
color: white;
border: none;
}
.copyright{
background-color: black;
color: white;
margin: 0% 5%;
border:none;
margin-bottom: 5%;
}
a{
color: white;
transition: color .2s;
}
a:hover{
color: blueviolet;
}
}
</style>
<div id="article-container">
<div id="article-title">Dillo Day 2019</div>
<div id="article-body"></div>
<div id="intro-text">Click an artist to learn more about them. Use the left and right arrows to scroll through the artists.</div>
<div id="intro-text-smallscreen">Tap an artist to learn more about them. Swipe left and right to scroll through the artists.</div>
<div id="bio-container">
<div class="artist-bio" id="denzelbio">
<div class="heading-container">
<h2 class="bioheading">Anna Lunoe
</h2>
<h3 class="writername">by <a class="authorname" target="_blank" href="http://northbynorthwestern.com/author/jennifer/">Jennifer Zhan</a></h3>
</div>
<iframe src="https://open.spotify.com/embed/track/5c1mH4n248moXSUixWGdWt" width="100%" height="80" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
<p> <strong>Artist Bio:</strong>
<br>
This trailblazer originally hails from Sydney, Australia. Anna Lunoe moved to LA in 2012 to pursue her career as an EDM artist. Since then, she has continued to make a name for herself with hit EPs, singles, and collabs. Lunoe is known for a style spanning several genres of EDM, and creates distinctive dance tracks with innovative instrumentals and drops. She also keeps listeners engaged both as a host of one of Apple Music’s most popular stations and as a young female DJ making history on main stages around the world.
<br>
<strong>Why you should get hyped:</strong>
<br>
Her resume. Lunoe has already been trusted to get people dancing at a long list of festivals including Coachella, Lollapalooza and TomorrowWorld. As a DJ, Lunoe isn’t only going to play her own bangers — she’s also going to throw down mixes of songs everyone knows. Expect her to command the stage with charisma and get you grooving to infectious beats that will get stuck in your head for the rest of the day.
<br>
<strong>Lyrics to memorize: </strong>
<br>
<br>
(From “303")
<br>
<br>
"Well this looks like a job for me
<br>
So everybody, just follow me
<br>
If you wanna get a little tipsy
<br>
We can dance to the beat of the 303
<br>
We can dance to the beat of the 303"
<br>
<br>
(One good thing about EDM, though, is that you don’t necessarily need to know any lyrics - it’s the beat drops you’ll remember.)
</p></div>
<div class="artist-bio" id="fergbio">
<div class="heading-container">
<h2 class="bioheading">A$AP Ferg
</h2>
<h3 class="writername">by <a class="authorname" target="_blank" href="http://www.northbynorthwestern.com/author/david/">David Deloso</a></h3>
</div>
<iframe src="https://open.spotify.com/embed/track/4dVpf9jZjcORqGTLUaeYj9" width="100%" height="80" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
<p> <strong>Artist Bio:</strong>
<br>
Harlem native A$AP Ferg has no problem making his presence known. As a member of hip-hop group A$AP Mob, Ferg is often in the company of rap giants such as A$AP Rocky (as evidenced by their stage names), but he stands out with his distinctive deep vocals and fast flow that he pairs with hard-hitting trap beats. Ferg is a powerful figure, and he knows it, as seen in the title of his 2013 debut album <em>Trap Lord</em>. Despite the sheer confidence Ferg exudes, he constantly aims to elevate his game, embodying the A$AP Mob’s motto, “Always Strive and Prosper.”
<br>
<strong>Why you should get hyped:</strong>
<br>
Two words: mosh pit. If there’s one thing A$AP Ferg knows how to do, it’s delivering a high-energy performance. His discography consists of banger after banger, and whether you’re a die-hard A$AP Mob stan or you didn’t even realize until just now that “A$AP” doesn’t stand for “as soon as possible,” it won’t be difficult for you to jump into the packed crowd and scream at the top of your lungs. Get ready to secure your valuables and go crazy.
<br>
<strong>Lyrics to memorize: </strong>
<br>
<br>
(From “Plain Jane”)
<br>
<br>
“Ride with the mob
<br>
Alhamdulallah
<br>
Check in with me, and do ya job
<br>
Ferg is the name
<br>
Ben Baller did the chain
<br>
Tourneau for the watch
<br>
Presi plain Jane”
</p>
</div>mo
<div class="artist-bio" id="williebio">
<div class="heading-container">
<h2 class="bioheading">Hippo Campus
</h2>
<h3 class="writername">by <a href="http://northbynorthwestern.com/author/elisehannum/" class="authorname" target="_blank">Elise Hannum</a></h3>
</div>
<iframe src="https://open.spotify.com/embed/track/6iCJCZqDJjmBxt07Oid6FI" width="100%" height="80" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
<p> <strong>Artist Bio:</strong>
<br>
Indie-rock band Hippo Campus was formed around 2013 in Saint Paul, Minnesota, where the members attended the same performing arts high school. They released their first EP, <em>Bashful Creatures</em>, independently in 2014, then went on sign with a record label. Since then, they’ve released more EPs, two full length albums (<em>Landmark</em> in 2017 and <em>Bambi</em> in 2018) and have toured the world, including performances at South by Southwest, Bonnaroo and Chicago’s own Lollapalooza. And, after years of being a highly requested group, Hippo Campus will finally grace the Dillo Mainstage!
<br>
<strong>Why you should get hyped:</strong>
<br>
They’re up-and-coming. Historically, Dillo has done a really good job of catching artists before they make it big. Although they’ve been around for a while, Hippo Campus is getting mainstream success and critical acclaim with <em>Bambi</em>. Expect them to bring great energy and uptempo indie bops to your early Dillo afternoon. If their performance is anything like their 2017 Minnesota State Fair performance (this author was there), it’s sure to be a BLAST.
<br>
<strong>Lyrics to memorize: </strong>
<br>
<br>
(From “Buttercup”)
<br>
<br>
“I’ll be fine on my own, she said, I don’t need you inside my head
<br>
(She’ll be fine on her own, she'll be fine on her own)
<br>
I'll be fine on my own, she said, all my love's wrapped in shades of red
<br>
(She’ll be fine on her own, she'll be fine on her own)
<br>
<br>
...
<br>
<br>
Solid punch kind of eyes make ‘em wobbly
<br>
Gothic vine growing fire in the lobby
<br>
Lighten up, buttercup, get a hobby
<br>
Yeah, swing, sucker, swing, finish sobbing
<br>
<br>
(You gotta know the refrain to this bad boy, but the second section is also the hypest part of the song.)
</p>
</div>
<div class="artist-bio" id="davebio">
<div class="heading-container">
<h2 class="bioheading">Teyana Taylor
</h2>
<h3 class="writername">by <a href="http://northbynorthwestern.com/author/camille/" class="authorname" target="_blank">Camille Williams</a></h3>
</div>
<iframe src="https://open.spotify.com/embed/track/3nXrCAE44KlevAkQB2XWcN" width="100%" height="80" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
<p> <strong>Artist Bio:</strong>
<br>
The one and only Teyana Taylor is a triple threat (singer, dancer, actress) from Harlem, New York. She’s the leading lady of Kanye West’s G.O.O.D. Music record label, from which she released her debut album <em>VII</em> in 2014. She’s worked and written records with Usher, Chris Brown, and Omarion and walked runways at New York Fashion Week. Her most recent album <em>K.T.S.E.</em> (Keep That Same Energy), was one of last year’s best R&B albums.
<br>
<strong>Why you should get hyped:</strong>
<br>
Teyana’s is performance is guaranteed to wow you with some amazing choreography (she was the star of Kanye’s 2016 “Fade” music video, and she’s choreographed for Beyoncé.) She has a soulful, raspy voice and throwback R&B vibes that will chill you out and lift you up you at the same. Plus, she and A$AP Ferg are both Harlem natives, and their parallel journeys and styles complement each other.
<br>
<strong>Lyrics to memorize: </strong>
<br>
<br>
(From “Gonna Love Me”)
<br>
<br>
“I wanna spend my nights with you
<br>
My life with you, oh baby, babe
<br>
Please wait up for me 'til whenever I get home
<br>
I know that you're all alone
<br>
Thinking 'bout what you're gon' do
<br>
I hope that you see it through, ooh, ooh
<br>
And oh, you're gonna love me
<br>
You're gonna wanna hug me and squeeze me"
</p>
</div>
<div class="artist-bio" id="mortybio">
<div class="heading-container">
<h2 class="bioheading">Daya
</h2>
<h3 class="writername">by <a href="http://northbynorthwestern.com/author/navpreet/" class="authorname" target="_blank">Navpreet Dhillon</a></h3>
</div>
<iframe src="https://open.spotify.com/embed/track/0EGuSSpuu9wmHCtvb4PdLO" width="100%" height="80" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
<p> <strong>Artist Bio:</strong>
<br>
From Pittsburgh, Pennsylvania, Daya entered and quickly became a star in the music industry at just 16 years old. In 2015, she released her first song “Hide Away,” which peaked at number 23 on the Billboard Top 100. In 2016, she released a self-titled EP <em>Daya</em>, which features the second song that skyrocketed her to fame, “Sit Still, Look Pretty.” In 2017, just two years after being in the industry, she won a Grammy for Best Dance Record for her song “Don’t Let Me Down” with The Chainsmokers.
<br>
<strong>Why you should get hyped:</strong>
<br>
Daya performed at the White House Easter Egg Hunt in 2016 and met the Obamas — that should be enough of a claim to fame. In case that fact isn’t, her promoter Steve Zap founded his own recording label Artbeatz just to endorse her. Daya’s lyrics are fun and playful, and being as old as the average sophomore at Northwestern, she’s just like us (if we won Grammys at the age of 18).
<br>
<strong>Lyrics to memorize: </strong>
<br>
<br>
(From “Sit Still, Look Pretty”)
<br>
<br>
“Oh, I don't know what you've been told
<br>
But this gal right here's gonna rule the world
<br>
Yeah, that is where I'm gonna be because I wanna be
<br>
No, I don't wanna sit still, look pretty
<br>
You get off on your nine to five
<br>
Dream of picket fences and trophy wives
<br>
But no, I'm never gonna be 'cause I don't wanna be
<br>
No, I don't wanna sit still look pretty"
</div>
<div class="artist-bio" id="spideybio">
<div class="heading-container">
<h2 class="bioheading">Fizz (Battle of the Bands 2019 Winner)
</h2>
<h3 class="writername">by <a href="http://northbynorthwestern.com/author/joangwak/" class="authorname" target="_blank">Joan Gwak</a></h3>
</div>
<div class="youtube">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/xLATyfe5Ct8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<p> <strong>Artist Bio:</strong>
<br>
Fizz, the winner of Mayfest’s Battle of the Bands, will take the main stage at Dillo, playing Funk Rock/Pop tunes that are sure to get you grooving with the beat. The 10 band members hail from different colleges, including Northwestern University, Marquette University, University of Nebraska, University of Illinois and University of Pittsburgh.
<br>
<strong>Why you should get hyped:</strong>
<br>
The band’s energy is addictive. When you see them performing, decked out in their colorful and eclectic clothes, you can’t help but move with them and relish the fun and upbeat melodies. The members play well together, with the brass instruments and drums maintaining the energetic tempo and the keyboards and guitars adding the perfect mix of layers of chords to keep the band’s sound consistent. Fizz won the Battle of the Bands definitely means something, so you’re in for a treat when they perform at Dillo.
</div>
<div class="artist-bio" id="rogerbio">
<div class="heading-container">
<h2 class="bioheading">Luminosity (Battle of the DJs 2019 Winner)
</h2>
<h3 class="writername">by <a href="http://northbynorthwestern.com/author/miamamone/" class="authorname" target="_blank">Mia Mamone</a></h3>
</div>
<iframe width="100%" height="150" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/600681663&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<p> <strong>Artist Bio:</strong>
<br>
Luminosity (Caroline Hughes) is a Chicago-based producer and DJ originally from Houston, Texas. Her music career began when she learned to play guitar at age 6. After only a year of lessons, she took her music instruction into her own hands, continuing learning on her own. Obsessed with everything music, Luminosity began learning music production in middle school. In high school, she started to learn all she could about the art of DJing. While in her high school’s worship band, Luminosity took up piano and began collaborating with other musicians to produce original music.
<br>
<strong>Why you should get hyped:</strong>
<br>
Luminosity, a Communication junior, is an NU student just like us — her 2019 Battle of the DJs win earned her a spot on the Dillo main stage. She released her first single titled “Get Running” from her dorm room freshman year, and has since released two more singles, “Arpeggiate” and “I’m Okay.” Her EP 3AM is forthcoming this summer. Her EDM and dubstep music is sure to pump you up for the long, long day and night to come.
</div>
</div>
<button id="return">Back to artists</button>
<div id="arrow-right">
<img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/coolerarrow-right.png">
</div>
<div id="arrow-left">
<img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/coolerarrow-left.png">
</div>
<div id="artist-container">
<div class="artist" id="ferg"><img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/ferg.png"></div>
<div class="artist" id="denzel"><img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/anna.png"></div>
<div class="artist" id="morty"><img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/daya.png"></div>
<div class="artist" id="willie"><img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/hippo.png"></div>
<div class="artist" id="dave"><img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/teyana.png"></div>
<div class="artist" id="roger"><img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/luminosity.png"></div>
<div class="artist" id="spidey"><img src="http://media.northbynorthwestern.com.s3.amazonaws.com/uploads/2019/05/29/fizz.png"></div>
</div>
<footer id="homepage-footer">
<div class="footer-container">
<p class="footer-text">Design and Development: David Deloso for <a class="article-link" href="https://northbynorthwestern.github.io/" target="_blank">North by Northwestern Interactive</a>.</p>
<p class="copyright">Copyright © 2019 North by Northwestern</p>
</div>
</footer>
</div>
<script>
// $(document).ready(function(){
// console.log("ready!");
// })
var biobox = $("#bio-container");
biobox.hide();
var returnButton = $("#return");
returnButton.hide();
var denzelbio = $("#denzelbio");
denzelbio.hide();
var fergbio = $("#fergbio");;
fergbio.hide();
var mortybio = $("#mortybio");
mortybio.hide();
var williebio = $("#williebio");
williebio.hide();
var davebio = $("#davebio");
davebio.hide();
var rogerbio = $("#rogerbio");
rogerbio.hide();
var spideybio = $("#spideybio");
spideybio.hide();
var biolist = ["blank", denzelbio, fergbio, mortybio, williebio, davebio, rogerbio, spideybio];
var currentArtist = 0;
function artistClick(selectedArtist) {
if (currentArtist === selectedArtist) {
window.scrollTo(0, 0);
setTimeout(function () {
returnButton.hide();
var previousArtist = currentArtist;
currentArtist = 0;
biobox.slideUp(200);
biolist[previousArtist].hide();
}, 450)
}
else if (currentArtist === 0) {
biolist[selectedArtist].show();
currentArtist = selectedArtist;
biobox.slideDown(200);
setTimeout(function () {
returnButton.show();
var newheight = $("#bio-container")[0].scrollHeight;
window.scrollTo(0, newheight);
}, 400);
}
else {
biolist[currentArtist].hide();
biolist[selectedArtist].show();
currentArtist = selectedArtist;
biobox.slideDown(250);
setTimeout(function () {
window.scrollTo(0, document.body.scrollHeight);
returnButton.show();
}, 250);
returnButton.show();
}
}
$("#denzel")[0].addEventListener("click", function () {
artistClick(1);
})
$("#ferg")[0].addEventListener("click", function () {
artistClick(2);
})
$("#morty")[0].addEventListener("click", function () {
artistClick(3);
})
$("#willie")[0].addEventListener("click", function () {
artistClick(4);
})
$("#dave")[0].addEventListener("click", function () {
artistClick(5);
})
$("#roger")[0].addEventListener("click", function () {
artistClick(6);
})
$("#spidey")[0].addEventListener("click", function () {
artistClick(7);
})
$("#arrow-right")[0].addEventListener("click", function () {
console.log("click works");
$("#artist-container").scrollLeft($("#artist-container").scrollLeft() + 2000);
})
$("#arrow-left")[0].addEventListener("click", function () {
console.log("click works");
$("#artist-container").scrollLeft($("#artist-container").scrollLeft() - 2000);
})
returnButton[0].addEventListener("click", function () {
window.scrollTo(0, 0);
setTimeout(function () {
returnButton.hide();
var previousArtist = currentArtist;
currentArtist = 0;
biobox.slideUp(450);
biolist[previousArtist].hide();
}, 250)
})
</script>
</body>
</html>