-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
914 lines (823 loc) Β· 21.6 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
<!DOCTYPE html>
<html>
<head>
<title>Happy Birthday Lucky π</title>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/9d89bb858d.js" crossorigin="anonymous"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Chelsea+Market&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&display=swap');
*{
box-sizing:border-box;
transition-duration:0.3s;
}
body {
margin:0;
padding:0;
}
#text_hb{
font-size:30px;
display:inline-block;
text-align:center;
float:right;
padding-top:15px;
padding-right:15px;
font-family: 'Chelsea Market', cursive;
top: 10px;
}
/*Loader code goes here --------------------------*/
.loader_container{
position:fixed;
top:0;
left:0;
height:100vh;
width:100vw;
background-color:black;
overflow:scroll;
}
.loader_sub{
height:150px;
width:150px;
background-color:transparent;
margin-top:calc(50vh - 150px);
margin-left:calc(50vw - 75px);
position:relative;
}
.loader_sub > div{
height:5px;
width:150px;
position:absolute;
bottom:0;
border-radius:50px;
animation:animate1 1s ease-out infinite;
background:linear-gradient(90deg, transparent ,#8DF3FF);
background-repeat:no-repeat;
}
.loader_s > div{
height:4px !important;
width:130px !important;
}
#loader_1{
transform-origin:50% 50%;
transform:rotate(180deg);
}
#loader_2{
transform:rotate(-60deg);
transform-origin:0% 50%;
}
#loader_3{
transform:rotate(60deg);
transform-origin:100% 50%;
}
@keyframes animate1{
0%{
background-size:0% 100%;
}
100%{
background-size:100% 100%;
}
}
.loader_text{
height:20px;
width:100vw;
background-color:none;
position:fixed;
margin-top:50px;
text-align:center;
font-size:30px;
letter-spacing:5px;
}
.loader_text::before{
color:white;
content:"Loading";
animation:animate2 2s infinite;
}
@keyframes animate2{
0%{
content:"Loading";
}
25%{
content:"Loading.";
}
50%{
content:"Loading..";
}
75%{
content:"Loading...";
}
100%{
content:"Loading...";
}
}
/*bar code goes here -----------------------------*/
.bar_container{
height:100px;
width:100%;
position:fixed;
top:10;
left:0;
background-color:#ffffff;
display:none;
font-weight:bold;
}
.bar_container::before{
content:" ";
bottom:-10px;
position:absolute;
width:100%;
height:20px;
background-color:#ffffff;
border-radius:0 0 50px 50px;
border-radius:0 0 100% 100%;
box-shadow:0 6px 4px #d8d8d8;
}
.bar_icon{
height:100px;
width:200px;
background-color:transparent;
padding-top:25px;
z-index:0;
display:inline-block;
float:left;
}
.bar_icon > div{
height:5.4px;
border-radius:10px;
width:30px;
background-color:#616161;
transition-duration:0.5s;
}
#bar_1{
width:15px;
margin-left:calc(50% - 10px);
transform-origin:0% 50%;
/*transform:rotate(45deg);*/
}
#bar_2{
width:30px;
margin:8px auto;
transform-origin:50% 50%;
/*transform:rotate(-45deg);*/
}
#bar_3{
width:15px;
margin-left:calc(50% - 5px);
transform-origin:100% 50%;
/*transform:rotate(45deg);*/
}
.bar_content_container{
position:fixed;
height:calc(100vh);
width:80vw;
background-color:#f1f5f8;
top:5px;
left:-80vw;
box-shadow:0 3px 5px gray;
overflow:scroll;
}
.bar_content_container > div{
margin:30px 5px 30px 5px;
background-color:none;
height:60px;
font-size:30px;
line-height:50px;
font-family: 'Anton', sans-serif;
}
.bar_content_container > div:hover{
background-color:#d3d7da;
}
#bar_content_1{
width:100%;
height:500px;
background-color:#ffffff;
margin:0px;
padding-top:30px;
box-shadow:0 3px 5px gray;
font-family: 'Open Sans Condensed', sans-serif;
border-radius:0 0 5px 5px;
}
#bar_content_5{
font-size:25px;
}
#bd_name{
width:100%;
text-align:center;
font-size:40px;
margin-top:20px;
margin-bottom:15px;
font-weight:bold;
}
#bd_image{
height:300px;
width:300px;
border-radius:50%;
margin:0px auto 10px auto;
background-color:red;
background-image:url("1l.jpg");
background-size:cover;
}
/*content part goes here --------------------*/
#primary{
position:fixed;
top:0;
height:calc(60px);
width:100%;
background-color:#e6e6e6;
left:0;
display:none;
}
.containt{
position:fixed;
top:60px;
height:calc(100vh - 60px);
width:100%;
background-color:blue;
left:0;
display:none;
overflow:scroll;
}
.main_profile{
height:calc(100vh - 60px);
width:100%;
background-color:#e6e6e6;
margin:0 auto;
padding-top:15vh;
}
.main_profile > .img{
display:block;
height:500px;
width:500px;
margin:0 auto 0 auto;
border-radius:50%;
background-image:url("1l.jpg");
background-size:cover;
}
#profile_name{
margin:30px auto 10px auto;
text-align:center;
font-size:70px;
}
#typewriter_container{
margin:10px auto;
text-align:center;
}
#text{
display:inline;
font-family: 'Chelsea Market', cursive;
font-size:30px
}
#cursor{
display:inline-block;
vertical-align:middle;
width:3px;
height:18px;
animation: blink .50s step-end infinite;
line-height:60%;
font-size:20px;
}
@keyframes blink{
from,to{
opacity:0;
}
50%{
opacity:1;
}
}
/*seprate tamplate codes -------------------------*/
#birthday_cake{
height:100vh;
width:100vw;
position:fixed;
top:0;
background-image:url("https://thumbs.gfycat.com/NegativeFineDingo-small.gif");
left:0;
display:none;
}
#cut_cake{
height:50px;
width:50px;
top:20px;
right:20px;
position:fixed;
border-radius:50%;
background-color:lime;
text-align:center;
font-size:50px;
}
.ak{
width:345px;
height:500px;
}
.copy{
margin-top:30px;
font-size:2px;
text-align:right;
}
image{
opacity:0.5;
}
.cover{
margin-top:570px;
height:60px;
width:355px;
background-color:white;
position:absolute;
box-sizing:border-box;
left:0%;
}
.baloon{
margin-top:570px;
width:355px;
background-color:red;
text-align:center;
height:auto;
left:0%;
border-bottom:solid;
border-color:black;
position:absolute;
}
.baloon > div{
height:40px;
width:40px;
display:inline-block;
margin:0px 0px 0px 0px;
transform:rotate(45deg);
border-radius:20px 20px 2px 20px;
animation-name:ball;
animation-iteration-count:infinite;
animation-duration:10s;
background-color:red;
}
@keyframes ball{
from{
transform:translate(0%,0%) rotate(45deg);
}
to{
transform:translate(0%,-650px) rotate(45deg);
background-color:pink;
}
}
.baloon > div:nth-child(1){
animation-delay:0.5s;
background-color:red;
}
.baloon > div:nth-child(2){
animation-delay:3.3s;
background-color:blue;
}
.baloon > div:nth-child(3){
animation-delay:2.4s;
background-color:green;
}
.baloon > div:nth-child(4){
animation-delay:5.1s;
background-color:orange;
}
.baloon > div:nth-child(5){
animation-delay:6.7s;
background-color:pink;
}
.baloon > div:nth-child(6){
animation-delay:9.6s;
background-color:red;
}
.baloon > div:nth-child(7){
animation-delay:8.5s;
background-color:yellow;
}
.baloon > div:nth-child(8){
animation-delay:4.5s;
background-color:gray;
}
p{
font-size:25px;
font-weight:bold;
font-family:cursive;
text-align:center;
background-color:green;
margin:0 auto;
width:200px;
border-radius:10px;
animation-name:ak;
animation-direction:alternate;
animation-duration:15s;
animation-iteration-count:infinite;
}
@keyframes ak{
0%{
transform:scale(0);
background-color:red;
color:white;
}
10%{
transform:scale(1);
background-color:blue;
color:pink;
}
20%{
transform:scale(0);
background-color:green;
color:red;
}
30%{
transform:scale(1);
background-color:pink;
color:purple;
}
40%{
transform:scale(0);
background-color:yellow;
color:black;
}
50%{
transform:scale(1);
background-color:orange;
color:red;
}
60%{
transform:scale(0);
background-color:gray;
color:white;
}
70%{
transform:scale(1);
background-color:purple;
color:white;
}
80%{
transform:scale(0);
background-color:black;
color:white;
}
90%{
transform:scale(1);
background-color:red;
color:blue;
}
100%{
transform:scale(0);
}
}
/*-------------------------------------------*/
#spin_container{
height:100vh;
width:100vw;
position:fixed;
top:0;
background-image:url("https://i.pinimg.com/originals/20/21/7f/20217f7fa2c9701b8128d8fb153a4db9.gif");
left:0;
display:none;
}
#cut_spin{
height:50px;
width:50px;
top:20px;
right:20px;
position:fixed;
border-radius:50%;
background-color:lime;
text-align:center;
font-size:50px;
}
#w1 {
perspective: 800px;
width:400px;
height:400px;
}
#w2 {
position: absolute ;
width: 400px;
transform-origin: 100px 100px 0;
height:400px;
transform-style: preserve-3d;
margin-top:calc(50vh - 100px);
margin-left:calc(50vw - 100px);
animation: spin 60s ease-in-out infinite ;
}
#w2 > div {
position: absolute;
width: 200px;
height: 200px;
transform-origin: 100px 100px 0;
opacity:0.9;
transition-duration:2s;
}
#f1 {
transform: translateZ(100px);
box-shadow: 0 0 10px lightgray;
background-image:url("1l.jpg");
background-size:100% 100%;
}
#f2 {
transform: rotateY(180deg) translateZ(100px);
box-shadow: 0 0 10px lightgray;
background-color:chocolate;
background-image:url("l4.jpg");
background-size:100% 100%;
}
#f3 {
transform: rotateY(-90deg) translateZ(100px);
box-shadow: 0 0 10px lightgray;
background-color:orange;
background-image:url("l5.jpg");
background-size:100% 100%;
}
#f4 {
transform: rotateY(90deg) translateZ(100px);
box-shadow: 0 0 10px lightgray;
background-color:violet;
background-image:url("l6.jpg");
background-size:100% 100%;
}
#f5 {
transform: rotateX(90deg) translateZ(100px);
box-shadow: 0 0 10px lightgray;
background-color:green;
background-image:url("l7.jpg");
background-size:100% 100%;
}
#f6 {
transform: rotateX(-90deg) translateZ(100px);
box-shadow: 0 0 10px lightgray;
background-color:blue;
background-image:url("3l.jpg");
background-size:100% 100%;
}
@keyframes spin{
20% {
transform: rotateY(-450deg) rotateX(360deg);
}
40% {
transform: rotateY(90deg) rotateX(-360deg);
}
60% {
transform: rotateY(-360deg) rotateX(450deg);
}
80% {
transform: rotateY(360deg) rotateX(-90deg);
}
}
#aud{
display:none;
} </style>
<script>
window.addEventListener("mouseover",play);
window.addEventListener("click",play);
function play(){
document.getElementById("aud").play();
}
var x = 0
//closing and opening section ---------------------
function normal(){
$("#bar_1").css("transform","rotate(0deg)");
$("#bar_2").css("transform","rotate(0deg)");
$("#bar_3").css("transform","rotate(0deg)");
$(".bar_content_container").css("left","-80vw");
$(".bar_container").css("left","0vw");
$("#primary").css("left","0vw");
$(".containt").css("left","0vw");
}
function bar_function(){
if (x==0){
$("#bar_1").css("transform","rotate(45deg)");
$("#bar_2").css("transform","rotate(-45deg)");
$("#bar_3").css("transform","rotate(45deg)");
$(".bar_content_container").css("left","0vw");
$(".bar_container").css("left","80vw");
$("#primary").css("left","80vw");
$(".containt").css("left","80vw");
x = 1;
}
else{
normal();
x = 0;
}
}
function openCake(){
normal();
$("#birthday_cake").css("display","block");
}
function closeCake(){
normal();
$("#birthday_cake").css("display","none");
}
function openSpin(){
normal();
$("#spin_container").css("display","block");
}
function closeSpin(){
normal();
$("#spin_container").css("display","none");
}
function warning(){
Swal.fire({
icon: 'error',
title: 'ππ
ΰ€ΰ₯ΰ€―ΰ€Ύ ΰ€²ΰ₯ΰ€ΰ₯ ΰ€
ΰ€¬ ΰ€ΰ₯ π
π',
html: 'Aacha bata do kya chahiye 2 - 3 saal me job karne lagenge to de hi denge. Abhi 2nd year me papa ke paise ka to nahi dunga.',
footer: '© All rights reserved !'
});
}
//-------------------------------------------------
window.onload = function(){
$(".loader_container").css("display","none");
$(".bar_container").css("display","block");
$("#primary").css("display","block");
$(".containt").css("display","block");
Swal.fire({
icon: 'success',
title: 'Welcome',
html: 'Happy BIRTHDAY Lucky π',
footer: '© All rights reserved !'
});
/*type writer effect logic --------------------*/
var _CONTENT = [
"Hay There Lucky",
"kaisi ho ? π",
"Mast hi hogi.",
"Aacha Wait !",
"Wish you a very very happy birthday",
"ab isko dekh lo",
"upper left me tin line",
"ko click kar do.",
"Ab dekh ke ja ke birthday manao",
"birthday manao aur pado π₯°",
"Bye Bye πββοΈ"
];
var _PART = 0;
var _PART_INDEX = 0;
var _INTERVAL_VAL;
var _ELEMENT = document.querySelector("#text");
var _CURSOR = document.querySelector("#cursor");
function Type() {
var text = _CONTENT[_PART].substring(0, _PART_INDEX + 1);
_ELEMENT.innerHTML = text;
_PART_INDEX++;
if(text === _CONTENT[_PART]) {
_CURSOR.style.display = 'none';
clearInterval(_INTERVAL_VAL);
setTimeout(function() {
_INTERVAL_VAL = setInterval(Delete, 50);
}, 1000);
}
}
function Delete() {
var text = _CONTENT[_PART].substring(0, _PART_INDEX - 1);
_ELEMENT.innerHTML = text;
_PART_INDEX--;
if(text === '') {
clearInterval(_INTERVAL_VAL);
if(_PART == (_CONTENT.length - 1))
_PART = 0;
else
_PART++;
_PART_INDEX = 0;
setTimeout(function() {
_CURSOR.style.display = 'inline-block';
_INTERVAL_VAL = setInterval(Type, 200);
}, 200);
}
}
_INTERVAL_VAL = setInterval(Type, 100);
/*type writer logic ends ----------------------*/
}</script>
</head>
<body>
<!-- Loader code -->
<div class="loader_container">
<div class="loader_sub">
<div id="loader_1"></div>
<div id="loader_2"></div>
<div id="loader_3"></div>
</div>
<div class="loader_text"></div>
</div>
<!-- A primary cover -->
<div id="primary"></div>
<!-- MAIN CONTAINER CODE -->
<div class="containt">
<!--profile start -->
<div class="main_profile">
<div class="img"></div>
<div id="profile_name">Lucky </div>
<div id="typewriter_container">
<div id="text"></div>
<div id="cursor">|</div>
</div>
</div>
<!-- New section start -->
</div>
<!-- BAR CODE -->
<div class="bar_container">
<div class="bar_icon" onclick="bar_function()">
<div id="bar_1"></div>
<div id="bar_2"></div>
<div id="bar_3"></div>
</div>
<div id="text_hb">
Happy Birthday Lucky π
</div>
</div>
<div class="bar_content_container">
<div id="bar_content_1">
<div id="bd_image"></div>
<div id="bd_name">To Lucky</div>
</div>
<div id="bar_content_2" onclick="openCake()">π Your Birthday Cake</div>
<div id="bar_content_3" onclick="openSpin()">π Ye pata nahi kya hai dekho</div>
<div id="bar_content_4" onclick="warning()">π₯ Your Gift</div>
<br>
<hr style="width:95%;opacity:0.5;">
<div id="bar_content_5"> <a style="text-decoration: none;color: black;" href="index1.html">π yeh bhi dekhlo </a> </div>
<br>
<div id="bar_content_5">Now its end </div>
</div>
<!-- Seprate tamplets -->
<!-- cake code goes here-->
<div id="birthday_cake">
<div id="cut_cake" onclick="closeCake()">Γ</div>
<div class="baloon">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="cover"></div>
<p>
BIRTHDAY CAKE
</p>
<div class="ak">
<svg width="100%" height="100%">
<defs>
<radialGradient id="flame">
<stop offset="0%" stop-color="yellow"/>
<stop offset="100%" stop-color="orange"/>
</radialGradient>
<g id="candle">
<path d="M154,206 S164,210 174,206 L174,206 L174,150 S164,140 153,150 Z" stroke="blue" fill="lightgreen"/>
<path d="M174,150 S160,165 154,150" stroke="blue" fill="none"/>
<path d="M152,140 S160,160 174,140 C179,130 171,120 172,110 L172,110 S150,120 152,140" stroke="red" fill="url(#flame)"/>
<path d="M162,151 S160,140 165,133" fill="none" stroke="blue"/>
</g>
<g id="apple">
<circle cx="86" cy="241" r="16" fill="#CB2026" stroke="brown"/>
<path d="M82,232 S85,237 93,235" fill="none" stroke="black"/>
<path d="M87,235 S85,215 105,210" stroke="#1C0E03" fill="none" style="stroke-width:3; "/>
</g>
</defs>
<path d="M25,380 S170,445 310,385 L310,385 S318,320 313,289 L313,289 S301,297 290,293 L290,293 S273,285 268,300 L264,310 S257,326 244,310 L244,310 S235,300 225,314 L225,314 S212,350 185,320 L185,320 S167,304 161,320 L161,320 S154,340 145,322 L145,322 S143,310 130,307 L130,307 S120,302 112,310 L112,310 S097,342 088,310 L088,310 S083,299 075,296 L075,296 S058,287 056,300 L056,300 S050,317 042,300 L042,300 S035,279 025,287 L025,287 S022,360 025,380" stroke="brown" fill="#FBF48C"/>
<path d="M025,287 S015,290 016,275 L016,260 C030,165 300,165 325,260 L325,260 S327,284 313,289
L313,289 S301,297 290,293 L290,293 S273,285 268,300 L264,310 S257,326 244,310 L244,310 S235,300 225,314 L225,314 S212,350 185,320 L185,320 S167,304 161,320 L161,320 S154,340 145,322 L145,322 S143,310 130,307 L130,307 S120,302 112,310 L112,310 S097,342 088,310 L088,310 S083,299 075,296 L075,296 S058,287 056,300 L056,300 S050,317 042,300 L042,300 S035,279 025,287" stroke="brown" fill="#352412"/>
<path d="M24,325 S190,392 314,330 L313,350 S195,412 24,345 Z" stroke="none" fill="#9D7C47"/>
<path d="M18,250 S170,345 323,255" fill="none" stroke="brown"/>
<circle r="2" cx="30" cy="250" fill="white"/>
<circle r="2" cx="80" cy="260" fill="red"/>
<circle r="2" cx="70" cy="215" fill="green"/>
<circle r="2" cx="110" cy="220" fill="blue"/>
<circle r="2" cx="165" cy="220" fill="orange"/>
<circle r="2" cx="150" cy="280" fill="pink"/>
<circle r="2" cx="190" cy="285" fill="yellow"/>
<circle r="2" cx="220" cy="230" fill="red"/>
<circle r="2" cx="240" cy="270" fill="white"/>
<circle r="2" cx="260" cy="215" fill="pink"/>
<circle r="2" cx="310" cy="250" fill="green"/>
<circle r="2" cx="150" cy="250" fill="purple"/>
<use xlink:href="#apple"/>
<use xlink:href="#apple" x="55" y="-21"/>
<use xlink:href="#apple" x="97" y="-5"/>
<use xlink:href="#apple" x="165" y="-5"/>
<use xlink:href="#candle" />
<use xlink:href="#candle" x="-70" y="10"/>
<use xlink:href="#candle" x="75" y="10"/>
<use xlink:href="#candle" x="-112" y="44"/>
<use xlink:href="#candle" x="119" y="48"/>
<use xlink:href="#candle" x="-37" y="63"/>
<use xlink:href="#candle" x="37" y="63"/>
</svg>
</div>
</div>
<!-- cake code ends here-->
<!-- spin code begins here -->
<div id="spin_container">
<div id="cut_spin" onclick="closeSpin()">Γ</div>
<div id="w1">
<div id="w2">
<div id="f1"></div>
<div id="f2"></div>
<div id="f3"></div>
<div id="f4"></div>
<div id="f5"></div>
<div id="f6"></div>
</div>
</div>
</div>
<audio id="aud" controls autoplay loop>
<source src="https://www.dropbox.com/s/soxte9z8xpi10qn/JSR.mp3?dl=1" type="audio/mpeg"/>
</audio>
</body>
</html>