-
Notifications
You must be signed in to change notification settings - Fork 0
/
artists.php
129 lines (109 loc) · 4.03 KB
/
artists.php
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
<?php
session_start();
$session_value = (isset($_SESSION['userData'])) ? $_SESSION['userData'] : '';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Music Taste Visualizer | Artists</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="imagens/separador.png" type="image/png" sizes="16x16">
<script type="text/javascript">
var userid = '<?php echo $session_value;?>';
</script>
<script src="p5/p5.js"></script>
<script src="p5/addons/p5.sound.js"></script>
<script src="https://cdn.deepstream.io/js/client/latest/ds.min.js"></script>
</head>
<body>
<div class="home-button">BACK TO HOMEPAGE</div>
<div class="informacao">
<img class="info" src="imagens/Info.png" width="834" height="834" alt="info">
<div class="popup-info">
<img class="imagem-info" src="imagens/LegendaArtistas.png" width="2599" height="2600" alt="info">
<div class="fechar-info fechar-infoA">X</div>
</div>
</div>
<div class="menu">
<div class="unit">
<div class="titulo">MENU</div>
<div class="leave leaveArtists">Leave Room</div>
</div>
<div>
People in Music Taste Visualizer
<div class="list-people unit">
</div>
<div>
<div class="menu-option2">MY TOP ARTISTS</div>
Choose an artist to add to the artboard<br/>
<div class="list-songs unit">
</div>
<div class="menu-option unit share-button">SAVE ART AND SHARE</div>
</div>
</div>
</div>
<div id="lista"></div>
<div class="overlay hide">
</div>
<div class="logout hide">
<div class="close-logout close-logoutA">X</div>
<div class="unit">
<h2><b>Are you sure you want to leave?</b></h2>
All the songs you added to the artboard will be deleted.
</div>
<div class="unit">
<div class="menu-option back">
No, go back to artboard
</div>
<div class="menu-option confirm-logout">
Yes, I want to leave
</div>
</div>
</div>
<div class="share hide">
<div class="close-share close-shareA">X</div>
<div class="unit">
<h2><b>Share your art!</b></h2>
You can share the artboard you created in your social networks or download it and use it for anything you want!
</div>
<div class="unit">
<a target="popup"
onclick="window.open('https://www.facebook.com/sharer/sharer.php?u=http://music-visualizer.duckdns.org:8888/','popup','width=600,height=400');">
<div class="menu-option">
<img class="contorno" src="imagens/facebook.png" width="100" alt="Facebook">
<div>Facebook</div>
</div>
</a>
<a target="popup"
onclick="window.open('https://twitter.com/intent/tweet?text=Just%20Created%20a%20Sea%20of%20My%20Top%20Artists%20from%20Spotify!%0D%0ACheck%20out%20&url=http://music-visualizer.duckdns.org:8888','popup','width=600,height=400');">
<div class="menu-option">
<img class="contorno" src="imagens/twitter.png" width="100" alt="Twitter">
<div>Twitter</div>
</div>
</a>
<div class="menu-option download">
<div class="preview"></div>
<div>Download</div>
</div>
</div>
</div>
<div class="logout-or-home hide">
<div class="close-home">X</div>
<div class="unit">
<h2><b>Keep Changes?</b></h2>
</div>
<div class="unit">
Do you want to keep the changes you made to the artboard ou do you want to leave the room?
Keep in mind that, if you are not coming back to the room, you should leave the room and all your songs will be
removed from the artboard.
</div>
<div class="unit">
<div class="menu-option delete-changes">LEAVE ROOM</div>
<div class="menu-option keep-changes">I WILL COME BACK</div>
<div class="menu-option back-artboard">BACK TO ARTBOARD</div>
</div>
</div>
<script src="js/artists.js"></script>
</body>
</html>