miao-plugin/resources/character/character.html
yoimiya-kokomi 83479c3589 1. 将#老婆命令使用新版卡片进行渲染
2. 增加卡片的命座展示
2022-03-27 21:12:00 +08:00

56 lines
1.8 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="{{_app_res_path}}/character/character.css?v=1.0"/>
</head>
<body class="{{bg.mode}}_mode">
<div class="container" id="container">
<div class="info">
<div class="char_name">
<div class="uid">ID:{{uid}}</div>
<span>{{ds.name}} <span
class="cons cons_{{actived_constellation_num}}">{{actived_constellation_num}}命</span></span>
</div>
<div class="detail"> Lv.{{level}} ❤{{fetter}}
<span class="crown crown_{{crownNum}}"></span>
</div>
<div class="weapon">
<div class="weapon_cont">
<img title="{{weapon.name}}" src="{{_res_path}}/genshin/logo/weapon/{{weapon.name}}.png"/>
<p class="weapon_lv">Lv.{{weapon.level}}</p>
<p class="weapon_affix">{{weapon.affix_level}}</p>
</div>
<p class="weapon_name">
<span class="for_left">Lv.{{weapon.level}} 精{{weapon.affix_level}}</span>
<span class="for_bottom">精{{weapon.affix_level}} </span>
{{weapon.name}}
</p>
</div>
{{ if talent.a }}
<div class="talent">
{{each talentMap name key}}
<div class="talent_{{key}}"> {{name}}<span>{{ talent[key].level_current}}</span></div>
{{/each}}
</div>
{{else}}
<div class="talent">
<div class="talent_{{key}}">暂无天赋信息</div>
</div>
{{/if}}
<div class="equiv_info">
<div class="text">{{text1|| "-"}}</div>
<div class="text">{{text2 || "-"}}</div>
</div>
</div>
<div>
<img src="{{_app_res_path}}{{bg.img}}" title="{{name}}" class="bg"></div>
</div>
</body>
<script type="text/javascript"></script>
</html>