Template:Infobox stat: Difference between revisions
Created page with "<includeonly> <div class="stat-box"> <div class="stat-box-content" style=" background: linear-gradient(135deg, rgba({{{box_rgb}}}, 0.5), rgba({{{box_rgb}}}, 0.1)); box-shadow: inset 0 0 0 4px rgba({{{box_rgb}}}, 0.9); "> <!-- Centered Icon and Label --> [[File:{{Lang|key={{{box_name}}}|lang_code=en}}_icon.png|40px|center|class=stat-box-icon|link=]] <div class="stat-box-label">{{Lang|key={{{box_name}}}}}</div> </div>..." |
m maxwidth 800 to 550 |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<includeonly> | <includeonly> | ||
<div | <div style="text-align: center; max-width: 550px;"> <!-- Centering the whole content --> | ||
<div | <div style=" | ||
background: linear-gradient(135deg, rgba({{{box_rgb}}}, 0.5), rgba({{{box_rgb}}}, 0.1)); | background: linear-gradient(135deg, rgba({{{box_rgb}}}, 0.5), rgba({{{box_rgb}}}, 0.1)); | ||
box-shadow: inset 0 0 0 4px rgba({{{box_rgb}}}, 0.9); | box-shadow: inset 0 0 0 4px rgba({{{box_rgb}}}, 0.9); | ||
padding: 10px; /* Main box padding */ | |||
border-radius: 15px; /* Adding rounded edges */ | |||
"> | "> | ||
<!-- | <div style=" | ||
display: flex; /* Using flexbox to align items */ | |||
justify-content: center; /* Centering items horizontally */ | |||
align-items: center; /* Centering vertically */ | |||
padding: 5px; /* Padding for the small container */ | |||
width: fit-content; /* Making the container small */ | |||
margin: auto; /* Centering the small container */ | |||
"> | |||
<!-- Label to the left of Icon --> | |||
<div style="font-family: 'Retail Demo', sans-serif; font-size: 2em; margin-right: 5px;"><b>{{#invoke:Lang|get_string|{{{box_name}}}}}</b></div> | |||
[[File:{{#invoke:Lang|get_string|{{{box_name}}}|lang_code_override=en}}_icon.png|40px|center|link=]] | |||
</div> | |||
</div> | </div> | ||
<div | <div style=" | ||
background: linear-gradient(135deg, rgba({{{box_rgb}}}, 0.5), rgba({{{box_rgb}}}, 0.25)); | background: linear-gradient(135deg, rgba({{{box_rgb}}}, 0.5), rgba({{{box_rgb}}}, 0.25)); | ||
"> | "> | ||
<!-- Table inside hidden box --> | <!-- Table inside hidden box --> | ||
<table class="stat- | <div class="stat-infobox-table-container"> | ||
<table class="stat-infobox-table"> | |||
{{#invoke: TableGenerator | generateHtmlTable | cols={{{num_cols}}} | only_body=true | class=Statbox_hero | cell_values={{{cell_values}}} }} | |||
</table> | |||
</div> | |||
</div> | </div> | ||
</div></includeonly><noinclude> | </div></includeonly><noinclude> | ||
{{Documentation}} | {{Documentation}} | ||
</noinclude> | </noinclude> |
Latest revision as of 21:04, 14 October 2024
Overview[edit source]
A hero stat infobox is created similar to the display seen in the shop when hovering over each stat category (Weapon, Vitality, Spirit).
When hovered, a box appears to the right that contains a table with specified cell values, preferably containing an icon, stat prefix, value, postfix, and name.
Examples[edit source]
{{Infobox_stat |box_name = CitadelCategoryWeapon |box_rgb = 213, 144, 63 |num_cols = 2 |cell_values = 800 MaxHealth,2 BaseHealthRegen,10 DPS }}
Outputs
800 MaxHealth | 2 BaseHealthRegen |
10 DPS |
See Module:HeroData which creates all 3 for a given hero dynamically using their stats and scalings
Parameters[edit source]
box_name: See Data:Lang_en.json for all english localization keys; ensure the box_name is a key that can be localized
No description.
Parameter | Description | Type | Status | |
---|---|---|---|---|
box_name | box_name | Unlocalized name of the Infobox_stat which will be localized to both the label and the image.
| String | optional |
box_rgb | box_rgb | RGB values for the box, comma separated. RGBA is not supported, as the alpha channel is modified by the template.
| String | optional |
num_cols | num_cols | Number of columns in the table.
| Number | optional |
cell_values | cell_values | Number of cell values, comma separated (no space after comma). Rows are added automatically based on the number of cell values and columns.
| String | optional |