示例图

2023-03-21T07:04:07.png

官网:
Hitokoto - 一言
https://hitokoto.cn/
语句接口 | 一言开发者中心
https://developer.hitokoto.cn/sentence/

js

window.onload=function () {
    var hitokoto = document.querySelector('.hitokoto');
    update();
    function update() {
        gethi = new XMLHttpRequest();
        gethi.open("GET","https://v1.hitokoto.cn?c=a");
        gethi.send();
        gethi.onreadystatechange = function () {
            if (gethi.readyState===4 && gethi.status===200) {
                var Hi = JSON.parse(gethi.responseText);
                hitokoto.innerHTML = Hi.hitokoto;
            }
        }
    }
}

html

<form       class="hitokoto"></form>

css

(左下角显示)

    .hitokoto {

  position: fixed;
  bottom: 5px;
  left: 5px;
  z-index: 150;
  border: none;
  outline: none;
  color: Violet;
  cursor: pointer;
  padding: 5px;
  border-radius: 10px;
  font-weight:bold;
  text-align:center;
  background-color:Black;
  opacity: 0.70;
  font-size: 0.5rem;
}

参考
青柠起始页——一言接口调用_玄东林檎的博客-CSDN博客_青柠起始页
https://blog.csdn.net/u013430418/article/details/126551736