9 lines
277 B
HTML
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> |