forked from YieldRay/Random-Picture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshow.html
84 lines (79 loc) · 2.91 KB
/
show.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
<!DOCTYPE html>
<html>
<head>
<title>Pixiv 随机图片</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net/" />
<link rel="preload" href="https://cdn.jsdelivr.net/gh/kylelogue/mustard-ui/dist/css/mustard-ui.min.css" as="style" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kylelogue/mustard-ui/dist/css/mustard-ui.min.css" />
<script src="https://cdn.jsdelivr.net/npm/jquery@3.2/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"></script>
<script>
$(document).ready(function () {
$('.scroll-down, .get-started').on('click', function (e) {
e.preventDefault();
$('html, body').animate(
{
scrollTop: $('section:first-of-type').offset().top,
},
300,
);
});
});
</script>
<style>
header {
background: #a0e5e4;
}
.get-started {
background: #43ccc8;
border: 3px solid #50d0cc;
}
* {
word-break: break-all;
}
.panel img {
width: 100%;
}
.right {
float: right;
}
</style>
</head>
<body>
<section>
<div class="row" id="output">
<strong>Error!</strong>
<i>No images can be shown.</i>
</div>
</section>
<script>
$.get('https://cdn.jsdelivr.net/gh/codingbox/Bye-Broken-Link@latest/url_ok.txt', function (data) {
let html = '';
document.getElementById('output').innerHTML = '';
data.split(/\r\n|\r|\n/)
.filter(e => e.length > 2)
.forEach((item, index) => {
html += `
<div class="col col-xs-12 col-sm-6 col-md-4 col-lg-3">
<div class="panel">
<div class="panel-head">
<p class="panel-title">ID:${index}</p>
</div>
<img class="lozad" data-src="${item}" alt="${index}" />
<div class="panel-footer">
<button onclick="window.open('${item}')" class="button-primary right">查看图片</button>
</div>
</div>
</div>`;
});
document.getElementById('output').innerHTML = html;
const observer = lozad();
observer.observe();
});
</script>
<!--</body>-->
</body>
</html>