效果
起因
看到一篇文章CS:GO 战绩板网页挂件,准备给自己也挂一个,但是发现那位博主的挂件——不会更新! 所以自己重构了一个后端
使用方法
展现形式
图片
https://csgo.plugin.learningman.top/api?steamid={}&rankid={}&svg=true
iframe
<style>
.csgo-stat-box{
display:block;
max-width:500px;
height:220px;
border-radius:4px;
}
</style>
<iframe class="csgo-stat-box" src="https://csgo.plugin.learningman.top/api?steamid={}&rankid={}" frameborder="0"></iframe>
参数
steamid
访问https://steamcommunity.com/my
,登陆后网页url应当为形如https://steamcommunity.com/profiles/76561198390775328/
的字符串,其中的数字串即为steamid
rankid
Steam
官方的API并没有提供查询玩家当前段位的接口,所以请前往https://github.com/Zxilly/CSGO_Plugin/tree/master/page/img
根据数字自行对号入座
svg
默认为False
,添加该参数后,将会使用<foreignObject>
生成一张svg图片返回 图片总是方便很多)
发表回复