-
Notifications
You must be signed in to change notification settings - Fork 0
/
random.html
30 lines (30 loc) · 1.23 KB
/
random.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
<body onload="javascript:dogo();">
<script>
function dogo(){
var urls=[
"https://yumetsuki.moe/posts/164ef646/",
"https://yumetsuki.moe/posts/e54f7476/",
"https://yumetsuki.moe/posts/ad884987/",
"https://yumetsuki.moe/posts/a9a6c1fb/",
"https://yumetsuki.moe/posts/c81531cf/",
"https://yumetsuki.moe/posts/de1f83f4/",
"https://yumetsuki.moe/posts/c262e439/",
"https://yumetsuki.moe/posts/1ee472c8/",
"https://yumetsuki.moe/posts/228c2ef8/",
"https://yumetsuki.moe/posts/2b89093e/",
"https://yumetsuki.moe/posts/ce5471fd/",
"https://yumetsuki.moe/tags/index.html",
"https://yumetsuki.moe/manifest.json",
"https://yumetsuki.moe/links/index.html",
"https://yumetsuki.moe/othersite/index.html",
"https://yumetsuki.moe/bangumis/index.html",
"https://yumetsuki.moe/bigpie/index.html",
"https://yumetsuki.moe/categories/index.html",
"https://yumetsuki.moe/fcircle/index.html",
"https://yumetsuki.moe/fontawesome/index.html",
"https://yumetsuki.moe/about/index.html",
];
n = Math.floor(Math.random()*urls.length);
location.href= urls[n];
}
</script>