-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
143 lines (125 loc) · 4.71 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
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify Album Covers</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body data-resize>
<!-- login modal -->
<div id="login" class="callout">
<div class="text">
<h1>Fullscreen Album Art for Spotify</h1>
<div class="info">
This app gets your currently playing track and displays the album art. The background is randomly composed of your top 50 most listened to songs and last 50 songs you have listened to.<br>
<br>
It may take a few minutes to load while the free Heroku server starts up.
</div>
<div class="shortcut">
F11 to toggle fullscreen.
</div>
<div class='more-info'>
For more information on the app click the spotify logo in the top right.
</div>
<button type="button" id="login-button" class="button">Log in with Spotify</button>
</div>
<div id="loggedin">
<div id="user-profile">
</div>
<div id="oauth">
</div>
</div>
</div>
<div id="wrapper">
<div id="container">
<!-- background artwork -->
<div id="test">
<div class="grid"></div>
</div>
<!-- cover artwork -->
<div id="cover_container">
<div id="cover_background">
<div id="previousCover">
<div id="cover"></div>
</div>
</div>
</div>
<!-- spotify icon -->
<div id="spotify" data-open="information">
<img src="img\spotify icon\Spotify_Icon_CMYK_White.png" alt="User Account Information">
</div>
<!-- track details -->
<div id="track-details">
<div id="track-text">
<div id="track"></div>
<div id="artist"></div>
<div id="album"></div>
</div>
<!-- <div id="controls">
<i class="material-icons">skip_previous</i>
<i class="material-icons">play_circle_outline</i>
<i class="material-icons">skip_next</i>
</div> -->
</div>
<!-- TODO: hide scrollbar when opened -->
<!-- info modal -->
<div id="information" class="reveal" data-reveal>
<div id="profile">
<div id="user">
</div>
<div id="profileInfo">
<div id="profileImg">
</div>
<div id="profileDetails">
<div id="email">
</div>
<div id="product">
</div>
<div><sub>Open means a free spotify account.</sub>
</div>
<button type="button" data-close id="logout" class="button">Logout</button>
</div>
</div>
<hr />
</div>
<div id="about">
<h4>About the Project</h4>
<p>
This is a personal project that is no way sponsered or endorsed by Spotify. No user information is retained by this project.
</p>
<p>
Sometimes the album art shown will not match exactly with the Spotify player, this because of the way the data is fetched through the Spotify API.
</p>
<div class="project-details">
To see this projects source code visit: <br />
<a href="https://github.com/massivelines/fullscreen-album-art-for-spotify">
https://github.com/massivelines/fullscreen-album-art-for-spotify</a>
</div>
<div class="project-details">
To report an issue or suggetion visit: <br />
<a href="https://github.com/massivelines/fullscreen-album-art-for-spotify/issues">
https://github.com/massivelines/fullscreen-album-art-for-spotify/issues</a>
</div>
</div>
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<div class="hidden">
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.js"></script>
<script src="https://rawgit.com/DrewDahlman/Mason/master/dist/mason.js"></script>
<script src="https://login-node-for-spotify.herokuapp.com/spotifyLogin.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.3/js/plugins/foundation.util.triggers.js"></script>
<script src="js/app.js"></script>
</body>
</html>