-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (72 loc) · 2.37 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>摆摆放屁动物园-官方网站</title>
<style>
body,
html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-size: cover;
background-position: center;
}
.content {
color: white;
font-size: 2em;
opacity: 0;
/* 初始状态为完全透明 */
transition: opacity 2s;
/* 定义过渡效果,持续时间为0.5秒 */
}
/* 当背景图片加载完成后,应用以下样式 */
body.loaded .content {
opacity: 1;
/* 目标状态为完全不透明 */
}
.font1 {
color: black;
height: 100%;
display: grid;
place-items: center;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function () {
var images = [
'img/bg1.jpg', // 图片文件名
'img/bg2.jpg',
'img/bg3.jpg',
'img/bg4.jpg',
'img/bg5.jpg',
'img/bg6.jpg',
'img/bg7.jpg',
// ... 可以添加更多图片
];
// 生成一个随机索引
var randomIndex = Math.floor(Math.random() * images.length);
// 获取随机图片并设置背景
var randomImage = images[randomIndex];
var img = new Image();
// 图片加载完成后,设置背景并开始文字渐显效果
img.onload = function () {
document.body.style.backgroundImage = 'url(' + randomImage + ')';
document.body.classList.add('loaded');
};
// 设置图片的src属性以开始加载
img.src = randomImage;
});
</script>
</head>
<body>
<div class="content">
<h2 class="font1">欢迎来到 摆摆放屁动物园™ !</h2>
<h6 class="font1">刷新页面即可随机查看不同摆摆写真</h6>
</div>
</body>
</html>