客至汲泉烹茶, 抚琴听者知音

自制仿一言api

想做一个类似一言的随机语句展示api,百度了一下还真有,于是稍作修改搬了过来。

原网址:http://tieba.baidu.com/p/4579862924

  1. 源代码:
<!--Hide 
min = Math.ceil(1)
max = Math.floor(12)  //自行修改语句数量
var rand1 = Math.floor(Math.random() * (max - min + 1)) + min //序号从min到max(含)

quotes=new Array 
quotes[1]= '测试1'  
quotes[2]= '测试2' 
quotes[3]= '测试3'  
quotes[4]= '测试4'  
quotes[5]= '测试5' 
quotes[6]= '测试6' 
quotes[7]= '测试7' 
quotes[8]= '测试8'
quotes[9]= '测试9'
quotes[10]= '测试10'
quotes[11]= '测试11'
quotes[12]= '测试12'
var quote=quotes[rand1]
//-->
  1. 使用方法:
  • 新建一个空白文件,将上面的代码复制到文件中,保存为js格式,然后上传到网站根目录。如我的:http://demo.ycyh.ink/test.js
  • 将下面的代码放到任意你想展示的位置
<script src="http://demo.ycyh.ink/test.js"></script>
<script language="JavaScript">document. write(quote)</script>
  • typecho为例,可以打开usr/theme下的主题文件,修改其中headerfooter之类的文件。

大功告成!

添加新评论