Help:Tooltips
Usage
To make the script show a tooltip when hovered over a specific element you have to add a special class to it. Some types of tooltips also support additional parameters specified via data-
attributes (see section Configuration for more)
There are three distinct types of tooltips:
Basic tooltips – class: basic-tooltip
- This type of tooltip will only show the contents of
title
of this element. - <source lang="html5">Basic tooltips</source>
- Basic tooltips
Advanced tooltips – class: advanced-tooltip
- Contents of this tooltip are taken from inside the element with
tooltip-contents
class. Contents of the element are taken as rendered - this allow to use wiki markup and HTML elements to format tooltip. Remember that contents of these tooltips are loaded on page load. This can drastically slow down page load times with big amounts of tooltips (including repeated uses of the same one). - <source lang="html5">Advanced tooltips</source>Tooltip content
Including HTML tags
- Advanced tooltipsTooltip content
Including HTML tags
Custom tooltips – class: your own
- This type allows the most control over contents of the tooltip with reduced page load times. You can use templates to generate tooltips and pass parameters to the template through
data-
attributes of the element you hover over. Its advantage over advanced tooltips is that the content of the tooltip is loaded when needed, and the same tooltip for multiple elements (same parameters) will be loaded once. - <source lang="html5">Custom tooltips – text</source>
- Custom tooltips – text
- <source lang="html5">Custom tooltips – parse</source>
- Custom tooltips – parse
Combining
Different types of tooltips can be combined to display them simultaneously. Order of tooltips is same as the order of classes.
- <source lang="html5">Combined tooltips</source>Advanced tooltip
- Combined tooltipsAdvanced tooltip
Configuration
Without any setup, script will only support basic and advanced tooltips. There are 3 variables that contain config for the script. You can specify them in MediaWiki:Common.js on your wiki.
Main config – tooltips_config
Here you can adjust some core features using this object:
- offsetX and offsetY: These are values that the tooltip will be moved right and down (respectively) from where the cursor is pointing (remember that margin of tooltip itself can move it further). Default value is 8 for both and values below 5 are not recommended.
- waitForImages: It will alter how tooltips behave when they have images inside. By default (
false
) tooltips will show up even if images aren't fully loaded yet. Images will eventually show up when they are loaded (lazy loading). Setting this value totrue
will make the script wait for all images to be fully loaded before showing the tooltip. - events: Is a list of JavaScript events of the window object that will trigger the search for tooltips that weren't present when script was initialized. This way you can make tooltips work in custom interface element that are added after the page is loaded and tooltips initialized. For example in a custom right rail module.
- noCSS: If you want to disable import of default CSS, set it to true
Example of the config object: <source lang="javascript">var tooltips_config = {
offsetX: 5, offsetY: 10, waitForImages: true, events: ['CustomEvent'], noCSS: true,
}</source>
Creating custom tooltip types – tooltips_list
You can add your own tooltips to this array. Every type of tooltip is an object with these properties:
- classname: CSS class that will trigger the tooltip of this type. This property is required.
- text: This string or function will be used as content of the tooltip.
- parse: Similar to text but the resulting text will be parsed, allowing the use of wiki syntax, at the cost of a short delay.
- onParsed: This function will be executed when the parsed has been fetched (with the tooltip being its context -
this
)
Both text and parse can be either a string or a function.
If the value is a string, you can use parameters that will be taken from the element the cursor is pointing at. To use a parameter, you need to add this in the text: <#parameter-name#>
. This tag will be replaced with value of the data-parameter-name
attribute of the element. You can use multiple parameters, and one parameter multiple times.
{{Template|<#value#>}} // <#value#> will be replaced with content of data-value attribute
Other way is to specify a function that will be executed whenever a new element without the tooltip is hovered-over. This function has that element as its context and should return contents of the tooltip (or wikitext to parse). Returned string doesn't support parameters like above since you can access any attributes yourself (ex: $(this).data('parameter-name')
)
Example of a object with settings for one type of tooltip <source lang="javascript"> {
classname: 'custom-tooltip', parse: '{'+'{Tooltip|<#name#>|<#value#>}}', // '+' makes MediaWiki ignore the template on the page with settings delay: 500, }</source>
Common properties
These properties can be used for all types, including the built in ones (basic-tooltip
and advanced-tooltip
)
- delay: Just like the name says. It'll make the tooltip appear after the specified delay in milliseconds. Tip: 1 second = 1000 milliseconds.
- onShow and onHide: Are pseudo-events that will be triggered (respectively) right after the tooltip is shown and right before it'll be hidden. These are callback functions with the tooltip itself being their context (
this
) and the hover handle that triggered the tooltip as an argument.
Example of settings for two custom tooltips and modifying behavior of basic tooltips: <source lang="javascript">var tooltips_list = [
{ classname: 'custom-tooltip-text', text: "Parameter: <#parameter#>
This is just text and HTML - wikitext won't be parsed", }, { classname: 'custom-tooltip-parse', parse: '{|style="white-space:nowrap;"\n!Parameter:\n|<#parameter#>\n|-\n!Lc:\n|{'+'{lc:<#parameter#>}}\n|-\n!Uc:\n|{'+'{uc:<#parameter#>}}\n|-\n!PAGENAME:\n|{'+'{PAGENAME}}\n|}', }, { classname: 'basic-tooltip', delay: 500, onHide: function(handle) { $(this).html($(handle).html()) }, },
]</source>
Debug mode – tooltips_debug
Setting it to true
will make some elements visible making it easier to spot problems. Debug mode can also be turned on temporarily by adding ?ttdebug=true
at the end of the URL. Like so: http://dev.wikia.com/wiki/Tooltips?ttdebug=true
Other notes and tips
- Additional classes to tooltips:
has-redlinks
: given to tooltips that (as the name says) have redlinks inside – this can be used to hide tooltips with missing templates.tooltip-loading
: given to tooltips that are still waiting for parsed contents to load – you can use it to show loading indicator or just hide the tooltip until it's ready.tt-tooltip-type
: every tooltip recives class based on its type (ex:tt-basic-tooltip
) – great for having different looking tooltip types.
- If your tooltips has shadow you might want to make space for it by adding margin to them or by adding padding to the div that contains active tooltips (
#tooltip-wrapper
).