Miao-Yunzai/plugins/genshin/resources/html/roleExplore/roleExplore.html

49 lines
1.6 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="{{pluResPath}}html/roleExplore/roleExplore.css"/>
<link rel="preload" href="{{resPath}}/font/tttgbnumber.ttf" as="font">
<link rel="preload" href="{{pluResPath}}img/other/原神.png" as="image">
{{@headIndexStyle}}
</head>
<body>
<div class="container" id="container">
<div class="head_box">
<div class="id_text">ID: {{uid}}</div>
<div class="day_text">{{activeDay}}</div>
<img class="genshin_logo" src="{{pluResPath}}img/other/原神.png">
</div>
<div class="data_box">
<div class="tab_lable">数据总览</div>
{{each line val}}
<div class="data_line">
{{each val item}}
<div class="data_line_item">
<div class="num">{{item.num}}</div>
<div class="lable">{{item.lable}}</div>
</div>
{{/each}}
</div>
{{/each}}
</div>
<div class="explor_box">
<div class="tab_lable">地图探险</div>
{{each explor val}}
<div class="item">
<img class="icon" src="{{pluResPath}}img/other/{{val.name}}.png" />
<div class="content">
{{each val.line line}}
<p class="name">{{line.name}}<span class="num">{{line.text}}</span></p>
{{/each}}
</div>
</div>
{{/each}}
</div>
<div class="logo">Created By Yunzai-Bot</div>
</div>
</body>
<script type="text/javascript"></script>
</html>