miao-plugin/resources/stat/abyss-pct.html
yoimiya-kokomi ea8b9b8f79 增加 #角色持有率 #角色命座 分析统计功能
增加 #深渊出场率 #深渊十二层出场率 查询功能
2022-04-05 05:36:44 +08:00

54 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>