-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusicstore.html
415 lines (380 loc) · 12.1 KB
/
musicstore.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
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="design.css">
<style type="text/css">
#fade{
height: 785px;
width: 50%;
background-color: #27333f;
float: left;
margin-top: 70px;
position: fixed;
}
.menu{
position: fixed;
z-index: 4;
font-size: 15px;
}
#mus{
height: 1455px;
width: 50%;
background-color: #4CAF50;
float: right;
right: 0;
margin-top: -10;
z-index: 3;
}
.whole{
height:350px;
width:100%;
clear: both;
margin-top: -20;
}
td.show-image {
position: relative;
float: left;
margin: 5px;
}
td.show-image:hover img {
opacity: 0.5;
}
td.show-image:hover input {
display: block;
}
td.show-image input {
position: absolute;
display: none;
}
td.show-image input.update {
align:center;
top:25;
left:32%;
}
.container{
background-color: white;
}
div{
background-color:none;
border-radius: 0px;
}
td{
color: #4CAF50;
font-family: sans-serif;
font-size: 15px;
}
img{
padding: 2px;
margin: 2px 50px;
}
.css-slideshow{
position: relative;
max-width: 495px;
height: 370px;
margin: 5em auto .5em auto;
}
.css-slideshow figure{
margin: 0;
max-width: 495px;
height: 370px;
background: none;
position: absolute;
}
.css-slideshow img{
box-shadow: 0 0 2px #666;
}
.css-slideshow figcaption{
position: absolute;
top: 0;
color: #fff;
background: rgba(0,0,0, .3);
font-size: .8em;
padding: 8px 12px;
opacity: 0;
transition: opacity .5s;
}
.css-slideshow:hover figure figcaption{
transition: opacity .5s;
opacity: 1;
}
.css-slideshow-attr{
max-width: 495px;
text-align: right;
font-size: .7em;
font-style: italic;
margin:0 auto;
}
.css-slideshow-attr a{
color: #666;
}
.css-slideshow figure{
opacity:0;
}
figure:nth-child(1) {
animation: xfade 48s 42s infinite;
}
figure:nth-child(2) {
animation: xfade 48s 36s infinite;
}
figure:nth-child(3) {
animation: xfade 48s 30s infinite;
}
figure:nth-child(4) {
animation: xfade 48s 24s infinite;
}
figure:nth-child(5) {
animation: xfade 48s 18s infinite;
}
figure:nth-child(6) {
animation: xfade 48s 12s infinite;
}
figure:nth-child(7) {
animation: xfade 48s 6s infinite;
}
figure:nth-child(8) {
animation: xfade 48s 0s infinite;
}
@keyframes xfade{
0%{
opacity: 1;
}
10.5% {
opacity: 1;
}
12.5%{
opacity: 0;
}
98% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#m1,#m2,#m3,#m4,#m6{
}
</style>
<script type="text/javascript" src="menu.js"></script>
</head>
<body>
<div class="menu" style="width:100%; height:11%; margin-top:0px; ">
<div class="menuleft" style="float:left;">
<a href="registration.html" class="logo">
<img src="icons/musikIcon.png" width="50px" height="50px" style="float:left;">
<h2 style="float:left;"> Muzica</h2>
</a>
</div>
<div class="menuright" style="float:left;">
<ul>
<li><a href="index.php" onmouseover="mOpen('m1')" onmouseout="mCloseTime()">Home</a>
<div id="m1" onmouseover="mCancelCloseTime()" onmouseout="mCloseTime()">
<a href="#">About Us</a>
<a href="#">Mission</a>
<a href="#">Vision</a>
<a href="#">Contact Us</a>
</div>
</li>
<li><a href="userpro.html" onmouseover="mOpen('m4')" onmouseout="mCloseTime()">Profile</a>
<div id="m4" onmouseover="mCancelCloseTime()" onmouseout="mCloseTime()">
<a href="#">My Profile</a>
<a href="#">Previous Purchases</a>
<a href="#">Edit Profile</a>
</div>
</li>
<li><a href="catalogue.php" onmouseover="mOpen('m2')" onmouseout="mCloseTime()">Catalogue</a>
<div id="m2" onmouseover="mCancelCloseTime()" onmouseout="mCloseTime()">
<a href="#">Genres</a>
<a href="#">Music</a>
</div>
</li>
<li><a href="registration.html" onmouseover="mOpen('m3')" onmouseout="mCloseTime()">Register</a>
<div id="m3" onmouseover="mCancelCloseTime()" onmouseout="mCloseTime()">
<a href="#">Register</a>
<a href="#">Login</a>
</div>
</li>
<li><a href="musicstore.html" onmouseover="mOpen('m6')" onmouseout="mCloseTime()">Music</a>
<div id="m6" onmouseover="mCancelCloseTime()" onmouseout="mCloseTime()">
<a href="#">Songs</a>
<a href="#">Albums</a>
<a href="#">Artists</a>
<a href="#">Genres</a>
</div>
</li>
<li><a href="shoppingcart.html">Shopping Cart</a> <!-- onmouseover="mOpen('m5')" onmouseout="mCloseTime()" -->
</div>
</li>
</ul>
</div>
</div>
<div class="whole">
<div id="fade">
<h2><center>Trending this week</center></h2>
<div class="css-slideshow">
<figure>
<img src="images\sq.jpg" alt="class-header-css3" width="495" height="370" class="alignnone size-full wp-image-172" /><figcaption><strong>English Song</strong> Artist: Siberia <br> Song: Lights</figcaption>
<h2> Hit in Europe</h2>
</figure>
<figure>
<img src="images\sq2.jpg" alt="class-header-semantics" width="495" height="370" class="alignnone size-full wp-image-179" /><figcaption><strong>English Song</strong> Artist: The Killers<br> Song: Battleborn</figcaption>
<h2> Best New Song</h2>
</figure>
<figure>
<img src="images\first.jpg" alt="class-header-offline" width="495" height="370" class="alignnone size-large wp-image-178" /><figcaption><strong>English Song</strong> Artist: Amy Winehouse <br> Song: My Oh My</figcaption>
<h2> Hit in USA</h2>
</figure>
<figure>
<img src="images\second.jpg" alt="class-header-device" width="495" height="370" class="alignnone size-full wp-image-177" /><figcaption><strong>English Song</strong> Artist: Mark Ronson <br> Song: The Business</figcaption>
<h2> People Choice Favourite Artist</h2>
</figure>
<figure>
<img src="images\bep.jpg" alt="class-header-connectivity" width="495" height="370" class="alignnone size-large wp-image-176" /><figcaption><strong>English Band: Black Eyed Peas</strong> Song:Just Do It</figcaption>
<h2> Top Band this Week</h2>
</figure>
<figure>
<img src="images\pc.jpg" alt="class-header-multimedia" width="495" height="370" class="alignnone size-large wp-image-175" /><figcaption><strong>English Song</strong> Artist: Priyanka Chopra <br> Song: Exotic</figcaption>
<h2> Hit this week in India</h2>
</figure>
<figure>
<img src="images\jb.jpg" alt="class-header-3d" width="495" height="370" class="alignnone size-large wp-image-174" /><figcaption><strong>English Song</strong> Artist: Justin Bieber <br> Song: Sorry</figcaption>
<h2> Best Song Grammy© Award Winner</h2>
</figure>
<figure>
<img src="images\skahira.jpg" alt="class-header-performance" width="495" height="370" class="alignnone size-large wp-image-173" /><figcaption><strong>English Song</strong> Artist: Shakira <br> Song: Waka Waka </figcaption>
<h2> All Time Favourite!</h2>
</figure>
</div>
</div>
<div id="mus" style="margin-top:70px;">
<div class="container">
<table>
<tr>
<td colspan="3">
<center><b>ROCK</b></center>
</td>
</tr>
<tr>
<td class="show-image"><center>
<img src="images\rock1.png" height="175" width="175"></center>
<input class="update" type="button" value="Add to Cart" />
</td>
<td class="show-image"><center>
<img src="images\rock2.jpg" width="175" height="175"></center>
<input class="update" type="button" value="Add to Cart" />
</td>
</tr>
<tr>
<td colspan="3">
<center><button class="button">View All</button>
</td>
</tr>
</table>
</div>
<br>
<br>
<div class="container">
<table>
<tr>
<td colspan="3">
<center><b>DEVOTIONAL</b></center>
</td>
</tr>
<tr>
<td class="show-image">
<img src="images\dev1.jpg" height="175" width="175">
<input class="update" type="button" value="Add to Cart" />
</td>
<td class="show-image">
<img src="images\dev2.jpg" width="175" height="175">
<input class="update" type="button" value="Add to Cart" />
</td>
</tr>
<tr>
<td colspan="3">
<center><button class="button">View All</button>
</td>
</tr>
</table>
</div>
<br>
<br>
<div class="container">
<table>
<tr>
<td colspan="3">
<center><b>POP</b></center>
</td>
</tr>
<tr>
<td class="show-image">
<img src="images\pop1.jpg" height="175" width="175">
<input class="update" type="button" value="Add to Cart" />
</td>
<td class="show-image">
<img src="images\pop2.jpg" width="175" height="175">
<input class="update" type="button" value="Add to Cart" />
</td>
</tr>
<tr>
<td colspan="3">
<center><button class="button">View All</button>
</td>
</tr>
</table>
</div>
<br>
<br>
<div class="container">
<table>
<tr>
<td colspan="3">
<center><b>JAZZ</b></center>
</td>
</tr>
<tr>
<td class="show-image">
<img src="images\j1.jpg" height="175" width="175">
<input class="update" type="button" value="Add to Cart" />
</td>
<td class="show-image">
<img src="images\j2.jpg" width="175" height="175">
<input class="update" type="button" value="Add to Cart" />
</td>
</tr>
<tr>
<td colspan="3">
<center><button class="button">View All</button>
</td>
</tr>
</table>
</div>
<br>
<br>
<div class="container">
<table>
<tr>
<td colspan="3">
<center><b>EDM</b></center>
</td>
</tr>
<tr>
<td class="show-image">
<img src="images\edm1.jpg" height="175" width="175">
<input class="update" type="button" value="Add to Cart" />
</td>
<td class="show-image">
<img src="images\edm2.jpg" width="175" height="175">
<input class="update" type="button" value="Add to Cart" />
</td>
</tr>
<tr>
<td colspan="3">
<center><button class="button">View All</button>
</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>