-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (149 loc) · 5.33 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!--
* @Author: LX
* @Description: BY:LX
* @Date: 2022-05-19 19:31:51
--><!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,maximum-scale=1,user-scalable=0"
/>
<title>在线获取淘宝买家秀晒图</title>
<link rel="stylesheet" href="css/style.min.css" />
<link rel="stylesheet" href="css/jquery.fancybox.min.css" />
</head>
<body>
<!-- 主体 -->
<div id="app">
<div id="title">
<h1>在线获取淘宝买家秀图片</h1>
<div class="number">正在获取买家秀图片数量...</div>
<div class="tool-tbshow">
<div class="tit">如果有显示空白,请点击换一批,重新试试噢!</div>
<div class="tit">当前网址:<span id="Turl"></span></div>
<div class="tit start">正在自动获取美图中....</div>
</div>
<div>
<!-- 弹窗 -->
<div id="str" style="display: none">
<div class="str_mark">
<div class="str_title">自定义获取图片数量</div>
<strong class="off">X</strong>
<input
type="number"
value=""
placeholder="请输入获取的数量!"
oninput="if(value.length>3)value=value.slice(0,3)"
onkeyup="if(this.value.length==1){this.value=this.value.replace(/[^0-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}"
onafterpaste="if(this.value.length==1){this.value=this.value.replace(/[^0-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}"
/>
<button class="btn" onclick="btn()">获 取</button>
<button
class="btn"
onclick="clears ()"
style="background-color: #dc143c"
>
清空
</button>
<div id="num_button">
<button class="button_1" name="1">1张</button>
<button class="button_5" name="5">5张</button>
<button class="button_10" name="10">10张</button>
<button class="button_20" name="20">20张</button>
</div>
<div id="diong">你还没有输入获取的数量噢!</div>
<div id="ok_diong">获取成功!</div>
</div>
</div>
</div>
<!-- 按钮 -->
<div>
<button id="next" style="background-color: #ff4500">换一批</button>
<button id="sub">再来几张</button>
<button id="img_num" onclick="img_num()" style="display: none">
当前图片数量
</button>
<button
class="btn Strat_img"
disabled
style="
background-color: #a0cfff;
border-color: #a0cfff;
cursor: not-allowed;
"
>
开始获取
</button>
<button
class="btn Stp"
style="
color: #fff;
background-color: #f56c6c;
border-color: #f56c6c;
"
>
停止获取
</button>
</div>
<div id="btn_down">
<button class="btn_list">打开/关闭图片列表</button>
<button class="btn_share" onclick="btn_share()">分享好友</button>
</div>
<!-- 侧边按钮 -->
<div id="app_btn">
<button id="app_next">换一批</button>
<button id="app_ding">自定义</button>
<a class="close" href="#">去顶部</a>
</div>
<div id="loadmore">图片努力加载中……</div>
</div>
<!-- 图片列表 -->
<div id="data_div" style="display: none">
<h1 class="title">图片列表</h1>
<h2 style="color: #fff; font-size: 14px">
当没有新的数据时,需要开启采集才会自动开始获取噢!
</h2>
<button
onclick="btn_list()"
style="background-color: deepskyblue; margin: 10px; padding: 0 12px"
>
获取图片列表
</button>
<button
onclick="btn_on()"
style="
background-color: rgb(14 80 239);
margin: 10px;
padding: 0 12px;
"
>
开启自动获取
</button>
<!-- <button
onclick="btn_off()"
style="
background-color: rgb(255, 0, 76);
margin: 10px;
padding: 0 12px;
"
>
关闭自动获取
</button> -->
<div id="list_img"></div>
</div>
<!-- end -->
<div id="content"><div id="walBox"></div></div>
</div>
</body>
<!-- 引入依赖文件 -->
<script src="js/jquery.min.js"></script>
<script src="js/lazyload.min.js"></script>
<script src="js/jquery.fancybox.min.js"></script>
<script src="js/index.js"></script>
<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>LA.init({id: "Jo0xBnJeeRDq96NU",ck: "Jo0xBnJeeRDq96NU"})</script>
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=0 height=1 src="https://music.163.com/outchain/player?type=2&id=1974402638&auto=1&height=32"></iframe>
</html>