-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoddess.html
104 lines (102 loc) · 2.52 KB
/
goddess.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>女神节快乐!</title>
</head>
<body>
<style>
body {
font-size: calc(10px + 0.33vw);
-webkit-font-smoothing: antialiased;
padding: 5vh 10vw;
color: #121314;
}
body,
html {
position: relative;
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
overflow-y: hidden;
background-color: pink;
color: #fff;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
user-select: none;
}
#Danny-Resume {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
flex-direction: column;
}
#position {
position: absolute;
right: 0;
top: 0
}
h1 {
text-indent: 2px;
}
</style>
<div id="Danny-Resume">
<h1>祝愿老婆和两位妈妈女神节快乐!</h1>
<h2>健康,自信,愉悦!</h2>
</div>
<div id="position">
<audio src="https://www.qqmc.com/mp3/music57935.mp3" controls="controls" autoplay="true" loop="true" preload="true">浏览器不支持audio标签</audio>
</div>
</body>
<script>
let getRandomColorX = function () {
return (
"#" +
(function (color) {
return (color += "0123456789abcdef"[
Math.floor(Math.random() * 16)
]) && color.length == 6
? color
: arguments.callee(color);
})("")
);
};
let getRandomColorY = function () {
return (
"#" +
(function (color) {
return (color += "0123456789abcdef"[
Math.floor(Math.random() * 16)
]) && color.length == 6
? color
: arguments.callee(color);
})("")
);
};
$("body").on("click", function () {
$(this).css({
background:
"-webkit-gradient(linear, left top, left bottom, from(" +
getRandomColorX() +
"), to(" +
getRandomColorY() +
"))",
});
});
</script>
</html>