Add files via upload

This commit is contained in:
gaotianliuyun 2022-10-28 09:15:48 +08:00 committed by GitHub
parent 52fc43d5c4
commit 111223b3d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 35 additions and 0 deletions

35
index.html Normal file
View File

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="zh-CN">
<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>Document</title>
<style>
img {
width: 100%;
}
</style>
</head>
<body>
<script>
var pic = new Array;
pic[0] = './json/x0.jpg';
pic[1] = './json/y1.jpg';
pic[2] = './json/z2.jpg';
pic[3] = './json/s3.jpg';
pic[4] = './json/t4.jpg';
pic[5] = './json/x5.jpg';
pic[6] = './json/y6.jpg';
pic[7] = './json/z7.jpg';
pic[8] = './json/s8.jpg';
pic[9] = './json/t9.jpg';
parseInt(Math.random() * (pic.length), 10);
var choose = Math.floor(Math.random() * (pic.length));
document.write('<img src="' + pic[choose] + ' ">');
</script>
</body>
</html>

BIN
json/s3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

BIN
json/s8.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

BIN
json/t4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
json/t9.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

BIN
json/x0.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
json/x5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

BIN
json/y1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

BIN
json/y6.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

BIN
json/z2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

BIN
json/z7.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB