mirror.dongdigua.github.io/js/random-quote.js

22 lines
836 B
JavaScript
Raw Normal View History

2022-10-29 13:26:19 +08:00
var data = [
2022-10-29 15:03:53 +08:00
"富强民主文明和谐, 自由平等公正法治, 爱国敬业诚信友善",
2022-10-29 13:26:19 +08:00
"解放思想, 实事求是, 与时俱进",
2022-10-29 15:03:53 +08:00
"绿水青山就是金山银山",
2022-10-29 13:26:19 +08:00
2022-10-29 16:44:27 +08:00
"<a id=quote href=https://www.bilibili.com/video/BV1vW411g7tN>谁甘人生黯淡无光 谁愿做叶不争艳芳</a>",
"fly high my friend, until we meet again",
2022-10-29 13:26:19 +08:00
"The internet is FULL, go away!",
"May the --force be with you",
"Software that sucks less",
2022-10-29 15:03:53 +08:00
"Software should be FREE!",
"whoami: No system is safe",
2022-10-29 16:44:27 +08:00
"DROP it at lttstore.com",
"Cant keep up! Is the server overloaded?\\n\nRunning 5000ms or 100 ticks behind",
2022-10-29 15:03:53 +08:00
"大炮做好了不放珍珠是什么意思?",
"不释仁",
2022-10-29 13:26:19 +08:00
];
var index = Math.floor((Math.random() * data.length));
window.document.getElementById("quote").innerHTML = data[index];