-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<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>好鸭壁纸</title>
<style>
body{text-align:center;}
button{font-weight:900;width:250px;height: 75px;font-size:40px;border:none;}
a{text-decoration:none;}
</style>
</head>
<body>
<script type="text/javascript" src="./js/jquery-2.1.3.min.js"></script>
<script src="./js/backgroundimages_2.js"></script>
<b style="font-size:30px;font-weight:450;background-color: #FFFFFF">F5刷新,背景图会变哦</b>
<h2 style="font-size:60px;font-weight:900;background-color: #FFFFFF">你是老色批吗?</h2>
<div>
<button onclick="yes()" style="background-color: #000000;"><a title="好色啊,我就看这些的" href="javascript:void()" style="color: #FFFFFF;">我是老色批</a></button><button onclick="no()" style="background-color: #FF9900;"><a title="好色哦,我都不看这些的" href="javascript:void()" style="color: #000000;">不,我不老</a></button>
</div>
<script>
function yes(){
window.open("./www/index.html");
};
function no(){
window.open("./www/index.html");
};
</script>
</body>
</html>