Difference between revisions of "Template:Tooltip hover box/doc"

From Stoneshard wiki
Jump to navigation Jump to search
old>Realpsojed
(looks like tooltips don't work in docs either, removing example.)
old>Realpsojed
(updated)
Line 23: Line 23:
}}
}}


If you already have a page with data, you can load that data into the tooltip. For example, on the page [[Templar Sword]] the item stats are already displayed. We can call for this page's data by using
If you already have a page with data, you can load that data into the tooltip. For example, if I had some data I want to see in the tooltip on page [[Templar Sword]], then I can call for this page's data by using


  <nowiki>{{ {{{1|Tooltip hover box}}}
  <nowiki>{{ {{{1|Tooltip hover box}}}
Line 29: Line 29:
}}</nowiki>
}}</nowiki>


Another option is to fill the data you want to see directly into the tooltip. In this example, we can use the [[Template:Weapon]] (or any other) and fill in the values.
Another option is to fill the data into another template. In this example, we will use the [[Template:Weapon]] and fill in the values:


  <nowiki>{{ {{{1|Tooltip hover box}}}
  <nowiki>{{ {{{1|Tooltip hover box}}}
Line 40: Line 40:
|Description=There is a faint etching on the surface of the blade, pledging loyalty to the Host and the court... the common kind of court.
|Description=There is a faint etching on the surface of the blade, pledging loyalty to the Host and the court... the common kind of court.
|Price=6500
|Price=6500
}} }}</nowiki>
}}
}}</nowiki>


Both will produce this tooltip. Template:Weapon automatically sets the headline to the current page name, hence the "{{ROOTPAGENAME}}".
And this is the result. Formatting from this template and from Template:Weapon is both applied. Note that Template:Weapon automatically sets the headline to the current page name, hence "{{ROOTPAGENAME}}" is shown on this page.


{{ {{{1|Tooltip hover box}}}
{{ {{{1|Tooltip hover box}}}
Line 53: Line 54:
|Description=There is a faint etching on the surface of the blade, pledging loyalty to the Host and the court... the common kind of court.
|Description=There is a faint etching on the surface of the blade, pledging loyalty to the Host and the court... the common kind of court.
|Price=6500
|Price=6500
}} }}
}}
}}


For more help, please use the discussion for this template [[:Template_talk:Tooltip hover box]].
For more help, please use the discussion for this template [[:Template_talk:Tooltip hover box]].


{{Doc/end}}
{{Doc/end}}

Revision as of 05:43, 4 April 2020

Template-info.png Documentation

This is a template created for use anytime you want to produce a pop-up mouseover tooltip. The tooltip automatically provides CSS styling and border similar to the in-game windows. Tooltip can display anything you write into the template, but the most common usage is to provide another template filled with data.

Usage: Create a new page with the name <something>/Tooltip. For example Templar Sword/Tooltip. Copy this code to the created page and fill in the parameters (or delete if you don't need both):

{{ {{{1|Tooltip hover box}}}
|title=
|body=
}}

For example, filling it like so

{{ {{{1|Tooltip hover box}}}
|title= My page
|body= <br>Lorem ipsum dolor sit..
}}

will produce this result:

My page
Lorem ipsum dolor sit..

If you already have a page with data, you can load that data into the tooltip. For example, if I had some data I want to see in the tooltip on page Templar Sword, then I can call for this page's data by using

{{ {{{1|Tooltip hover box}}}
|title= {{:Templar Sword}}
}}

Another option is to fill the data into another template. In this example, we will use the Template:Weapon and fill in the values:

{{ {{{1|Tooltip hover box}}}
|title= {{Weapon
|WeaponType=Sword
|Damage=37 Slashing<br> 2 Sacred
|Properties=Armor Damage:<br> Armor Piercing:<br> Bodypart Damage:<br> Block Chance:<br> Fumble Chance:<br> Accuracy:<br> Crit Chance:<br> Skills Energy Cost:
|Values= <span style="color:green;">'''+15%'''</span><br> <span style="color:green;">'''+20%'''</span><br> <span style="color:green;">'''+15%'''</span><br> <span style="color:green;">'''+10%'''</span><br> <span style="color:green;">'''-5%'''</span><br> <span style="color:green;">'''+5%'''</span><br> <span style="color:green;">'''+5%'''</span><br> <span style="color:darkred;">'''+15%'''</span>
|Durability=150
|Description=There is a faint etching on the surface of the blade, pledging loyalty to the Host and the court... the common kind of court.
|Price=6500
}}
}}

And this is the result. Formatting from this template and from Template:Weapon is both applied. Note that Template:Weapon automatically sets the headline to the current page name, hence "Tooltip hover box" is shown on this page.

Tooltip hover box
Common

Durability: /

Tooltip hover box
Price

Tooltip hover box

For more help, please use the discussion for this template Template_talk:Tooltip hover box.