58 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
		
			
		
	
	
			58 lines
		
	
	
		
			1.8 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}}html/deckList/deckList.css" /> | ||
|  |   <link rel="preload" href="{{_res_path}}font/tttgbnumber.ttf" as="font"> | ||
|  |   <link rel="preload" href="{{_res_path}}img/other/bg5.png" as="image"> | ||
|  |   <link rel="preload" href="{{_res_path}}img/other/bg4.png" as="image"> | ||
|  |   <link rel="preload" href="{{_res_path}}img/other/bg105.png" as="image"> | ||
|  |   <link rel="preload" href="{{_res_path}}img/abyss/bg.png" as="image"> | ||
|  |   {{@headStyle}} | ||
|  | </head> | ||
|  | 
 | ||
|  | <body> | ||
|  |   <div class="container" id="container"> | ||
|  |     <div class="head_box"> | ||
|  |       <div class="role-name"> | ||
|  |         {{nickname}} lv:{{level}} | ||
|  |       </div> | ||
|  |       <div class="id_text"> | ||
|  |         UID: {{uid}} | ||
|  |       </div> | ||
|  |       <img class="genshin_logo" src="{{_res_path}}img/other/原神.png" /> | ||
|  |     </div> | ||
|  |     <div style="height: 12px;"></div> | ||
|  | 
 | ||
|  |     {{each Data vals}} | ||
|  |     <div class="basicInfo"> | ||
|  |       <div class="tab_lable">七圣卡组{{vals.id}} 使用#七圣查询卡组{{vals.id}}查看详情</div> | ||
|  |       <div style="height: 10px;"></div> | ||
|  |       <div class="avatar_covers"> | ||
|  |         {{each vals.avatar_cards val}} | ||
|  |         <div class="card-wrapper"> | ||
|  |           <div class="overlay"> | ||
|  |             <img src="{{_res_path}}img/deck/边框.png" alt=""> | ||
|  |           </div> | ||
|  |           <div class="overlay"> | ||
|  |             <div class="rq-container"> | ||
|  |               <img src="{{_res_path}}img/deck/容器.png" alt=""> | ||
|  |             </div> | ||
|  |             <div class="hp-container"> | ||
|  |               <img src="{{_res_path}}img/deck/{{val.hp}}.png" alt=""> | ||
|  |             </div> | ||
|  |           </div> | ||
|  |           <img src="{{val.image}}" alt=""> | ||
|  |         </div> | ||
|  |         {{/each}} | ||
|  |       </div> | ||
|  |     </div> | ||
|  |     {{/each}} | ||
|  |     <div class="logo">Created By {{yzName}}</div> | ||
|  |   </div> | ||
|  | </body> | ||
|  | 
 | ||
|  | </html> |