自动切换wordpress高清背景图源

404次阅读
没有评论

共计 6148 个字符,预计需要花费 16 分钟才能阅读完成。

后台直接设置 wordpress 背景图,地址填写下边的源地址!
收集了几个源给大家分享!

 

动漫

www.dmoe.cc/random.php
acg.toubiec.cn/random.php
api.ixiaowai.cn/api/api.php
https://api.ixiaowai.cn/mcapi/mcapi.php(mc 酱动漫)https://api.ixiaowai.cn/gqapi/gqapi.php(高清壁纸)api.mtyqx.cn/tapi/random.php(挺好看的动漫)https://likepoems.com/api/img/pc(高清图)

真人

cdn.seovx.com/?mom=302

api.btstu.cn/sjbz/api.php

 

移动端手机

api.isoyu.com/mm_images.php

 

表情包

api.isoyu.com/ARU_GIF_S.php


1、api 接口整合

樱花:https://www.dmoe.cc/random.php
搏天:https://api.btstu.cn/sjbz/api.php
樱道:https://api.r10086.com/img-api.php?type= 动漫综合 1
小歪:https://api.ixiaowai.cn/api/api.php
保罗:https://api.paugram.com/wallpaper
墨天逸:https://api.mtyqx.cn/tapi/random.php
EEE.DOG:https://api.yimian.xyz/img
东方 Project:https://img.paulzzh.tech/touhou/random
likepoems 随机图:https://api.likepoems.com/img/sina/nature
洛川唧上的萌部图片:
https://service-5z0sdahv-1306777571.sh.apigw.tencentcs.com/release/
Unsplash Image:https://source.unsplash.com/random
缙哥哥博客: https://api.dujin.org/pic/yuanshen/
其它随机图:https://api.wuque.cc/random/images

2、api 网站整合

2.1 樱花

网址:https://www.dmoe.cc/

2.2 搏天

网址:https://api.btstu.cn/doc/sjbz.php

2.3 樱道 (不太稳定)

网址:https://img.r10086.com/

2.4 小歪

网址:https://api.ixiaowai.cn/

2.5 保罗 (不太稳定)

网址:https://api.paugram.com/help/wallpaper

2.6 墨天逸

网址:https://api.mtyqx.cn/

2.7 EEE.DOG

网址:https://www.eee.dog/tech/rand-pic-api.html

2.8 东方 Project

网址:https://img.paulzzh.tech/

2.9 likepoems 随机图

网址:
https://api.likepoems.com/

2.10 洛川唧上的萌部图片

网址:https://tu-api.df100.ltd/

2.11 Unsplash Image

网址:https://source.unsplash.com/

2.12 缙哥哥博客

网址:https://api.dujin.org/pic/yuanshen/

2.13 其它随机图

网址:https://api.wuque.cc/random/images

3、怎么自制随机图

3.1 普通的随机图

准备图片—> 书写路径—> 书写 php 文件
在 img 文件夹里新建 img.txt,文件中直接写图片的 URL 地址,如:

https://static.likepoems.com/2020/10/06/385ea1c4c8b4fbac57f5a0aa61f033761.jpg
https://static.likepoems.com/2021/06/12/20210126104630786.png

新建 index.php 文件。文件内容如下:

<?php
// 存放 api 随机图链接的文件名 img.txt
$filename = “img.txt”;
if(!file_exists($filename)){
die(‘ 文件不存在 ’);
}
// 从文本获取链接
$pics = [];
$fs = fopen($filename, “r”);
while(!feof($fs)){
$line=trim(fgets($fs));
if($line!=){
array_push($pics, $line);
}
}
// 从数组随机获取链接
$pic = $pics[array_rand($pics)];
// 返回指定格式
$type=$_GET[‘type’];
switch($type){
//JSON 返回
case ‘json’:
header(‘Content-type:text/json’);
die(json_encode([‘pic’=>$pic]));
default:
die(header(“Location: $pic));
}
?>

然后放在服务器里面的 api 文件夹里,绑定域名,记得开启 php 环境
访问路径:你的域名 /api/img

3.2 通过新浪微博图床搭建的随机图

<?php
// 读取文本
$str = explode(“n”, file_get_contents(‘img.txt’));
$k = rand(0,count($str));
$sina_img = str_re($str[$k]);
// 定义多个新浪图片请求接口
$size_arr = array(‘large’, ‘mw1024’, ‘mw690’, ‘bmiddle’, ‘small’, ‘thumb180’, ‘thumbnail’, ‘square’);
$size = !empty($_GET[‘size’]) ? $_GET[‘size’] : ‘large’ ;
$server = rand(1,4);
if(!in_array($size, $size_arr)){
$size = ‘large’;
}
$url = ‘https://tva’.$server.‘.sinaimg.cn/’.$size.‘/’.$sina_img.‘.jpg’;
// 解析 url
$result=array(“code”=>“200”,“imgurl”=>$url);
// 定义 type 返回类型
$type=$_GET[‘return’];
switch ($type)
{
//Json 格式解析
case ‘json’:
$imageInfo = getimagesize($url);
$result[‘width’]=$imageInfo[0]”;
$result[‘height’]=$imageInfo[1]”;
header(‘Content-type:text/json’);
echo json_encode($result);
break;
// 返回图片链接
default:
header(“Location:”.$result[‘imgurl’]);
break;
}
function str_re($str){
$str = str_replace(‘ ‘, “”, $str);
$str = str_replace(“n”, “”, $str);
$str = str_replace(“t”, “”, $str);
$str = str_replace(“r”, “”, $str);
return $str;
}
?>

和上面的一样,只是请求的是微博的图片,比较稳定,速度快。
请求示例:
你的域名 /api/img?return=json 返回 json 格式
你的域名 /api/img 返回普通图片

3.3 自定义多种返回样式

页面效果可以参考 api 接口

 
正文完
 0
DIY
版权声明:本站原创文章,由 DIY 于2022-11-19发表,共计6148字。
转载说明:除特殊说明外本站文章皆由《DIY幕僚》协议发布,转载请注明出处。
评论(没有评论)