Files
LGPicFinder/history/Luogu图床随机查看器.html
2019-03-24 11:42:42 +08:00

9 lines
277 B
HTML

<html>
<script type="text/javascript">
var randnum;
randnum=Math.random();
randnum=Math.floor(Math.random()*20000);
var txt="https://cdn.luogu.org/upload/pic/"+randnum+".png"
document.write("<img src="+txt+">");
</script>
</html>