-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
68 lines (59 loc) · 2.49 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
<!DOCTYPE html>
<html lang="ja">
<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>pixivランダムさん</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>pixivランダムさん</h1>
</header>
<main>
<div id="jumptable">
<span class="jump"><a href="javascript:pixivrnd();" rel="noreferrer nofollow">1回飛ぶ!</a></span>
<span class="jump"><a href="javascript:pixivrnd_10();" rel="noreferrer nofollow">10回連続で飛ぶ!</a></span>
<span class="jump"><a href="javascript:pixivrnd_bg();" rel="noreferrer nofollow">どんどん開く!</a></span>
</div>
<ul>
<li>
minID: <span id="current_minID_value"></span>
<input type="range" id="minID_range" class="input-range" min="0" max="91000000" step="1" value="70300000">
</li>
<li>
maxID: <span id="current_maxID_value"></span>
<input type="range" id="maxID_range" class="input-range" min="0" max="91000000" step="1" value="90830000">
</li>
</ul>
<h2>注意</h2>
<ul class="describe">
<li>pixivIDを持っており、かつログインしている状態である必要があります。</li>
<li>既に削除されている作品や、閲覧不可な作品に飛ぶことがあります。</li>
<li>10回連続で飛ぶ!は、webブラウザのポップアップ抑止機能で通常抑止されます。一度実行した後、このページに戻って、ポップアップを許可してください。</li>
<li>R-18に跳ぶこともあるよ。気をつけてね。</li>
</ul>
<h2>IDと年月のざっくり対応表</h2>
<ul class="id_to_time">
<li>0xxxxxxx: 2007年9月~</li>
<li>1xxxxxxx: 2010年4月~</li>
<li>2xxxxxxx: 2011年7月~</li>
<li>3xxxxxxx: 2012年9月~</li>
<li>4xxxxxxx: 2013年11月~</li>
<li>5xxxxxxx: 2015年4月~</li>
<li>6xxxxxxx: 2016年11月~</li>
<li>7xxxxxxx: 2018年8月~</li>
<li>8xxxxxxx: 2020年3月~</li>
<li>9xxxxxxx: 2021年5月~</li>
</ul>
</main>
<footer>
<div class="copy">
© 2021 sakots <a href="https://github.com/sakots/pixivrnd">github</a><br>
Special thanks <a href="https://twitter.com/oca_laful">@oca_laful</a>
</div>
</footer>
<script src="./main.js"></script>
</body>
</html>