mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
ea8b9b8f79
增加 #深渊出场率 #深渊十二层出场率 查询功能
54 lines
2.0 KiB
HTML
54 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
|
||
<link rel="shortcut icon" href="#"/>
|
||
<link rel="stylesheet" type="text/css" href="{{_res_path}}/stat/common.css?v=1.0"/>
|
||
<link rel="stylesheet" type="text/css" href="{{_res_path}}/stat/abyss-pct.css?v=1.0"/>
|
||
<link rel="preload" href="{{_res_path}}/font/tttgbnumber.ttf" as="font">
|
||
</head>
|
||
<body id="container" class="body_box">
|
||
<div class="container">
|
||
<div class="info_box">
|
||
<div class="head-box type{{bgType}}">
|
||
{{if chooseFloor == -1}}
|
||
<div class="title">深渊出场率统计</div>
|
||
<div class="label">全角色出场率统计(出场记录/总记录)</div>
|
||
{{else}}
|
||
<div class="title">深渊第{{floorName[chooseFloor]}}出场率</div>
|
||
<div class="label">全角色出场率统计(出场记录/总记录)</div>
|
||
{{/if}}
|
||
<img class="genshin_logo" src="{{_sys_res_path}}/genshin/roleAll/原神.png"/>
|
||
</div>
|
||
|
||
{{each abyss ds}}
|
||
{{if chooseFloor == -1 || chooseFloor == ds.floor}}
|
||
<div class="info_box_border">
|
||
<div class="line_box">
|
||
<span class="line"></span>
|
||
<span class="text">第{{floorName[ds.floor]}}</span>
|
||
<span class="line"></span>
|
||
</div>
|
||
<div class="card-list">
|
||
{{each ds.avatars char}}
|
||
<div class="item star{{char.star == 4? 4:5}}">
|
||
<img class="role"
|
||
src="{{_sys_res_path}}/genshin/logo/role/{{char.name}}.png"
|
||
/>
|
||
|
||
<div class="num_name">{{pct(char.value)}}%</div>
|
||
</div>
|
||
{{/each}}
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{{/if}}
|
||
{{/each}}
|
||
<p class="notice notice-center"> 数据来源:DGP-Studio-胡桃API . 最后更新时间:{{lastUpdate}} </p>
|
||
<div class="copyright"> Create By Yunzai-Bot & Miao-Plugin</div>
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
</html> |