Template:Hidden/doc: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
(+ia +ko)
No edit summary
 
(46 intermediate revisions by 34 users not shown)
Line 1: Line 1:
<noinclude>{{template doc page viewed directly}}</noinclude>
This template creates a [[w:Wikipedia:NavFrame|dynamic navigation box]] using style sheet declarations in [[MediaWiki:Common.css]] and Javascript code in [[MediaWiki:Common.js]]. It displays the first parameter (the heading) with a [show] link on the right.  If [show] is clicked by the user, the second parameter (the body) is displayed below the heading and the [show] link becomes [hide].  Clicking on [hide] then hides the body again and the [hide] link becomes [show] again.
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE -->
 
{{interwikitmp-grp|V=D|wqt=|wsr=|mdw=|wdy=|wsp=|wvy=|wbk=}}
The template does '''not''' provide an argument to designate the initial state of the show/hide control.  In the nested case, show/hide controls in hidden content retain their state.  There is no facility for ''collapse all'' or ''reveal all''. 
This template creates a [[Wikipedia:NavFrame|dynamic navigation box]] using style sheet declarations in [[MediaWiki:Common.css]] and Javascript code in [[MediaWiki:Common.js]]. It displays the first parameter (the heading) with a [show] link on the right.  If [show] is clicked by the user, the second parameter (the body) is displayed below the heading and the [show] link becomes [hide].  Clicking on [hide] then hides the body again and the [hide] link becomes [show] again.


==Usage==
==Usage==
===Syntax===
<pre style="overflow:auto;">
{{Hidden
|header=
|content=
|style=
|headerstyle=
|contentstyle=
|fw1=
|fw2=
|bg1=
|bg2=
|ta1=
|ta2=
}}
</pre>
===Parameters===
Only two parameters are required for this template:
Only two parameters are required for this template:
;header : text for header (or title); alternative to using unnamed parameter <nowiki>{{{1}}}</nowiki>
;header : text for header (or title); alternative to using unnamed parameter <nowiki>{{{1}}}</nowiki>
;content : text for content (or body); alternative to using unnamed parameter <nowiki>{{{2}}}</nowiki>
;content : text for content (or body); alternative to using unnamed parameter <nowiki>{{{2}}}</nowiki>


===Optional parameters===
====Optional====
 
;style : add [[w:Cascading Style Sheets|CSS]] to the main div.
;headercss : add [[w:Cascading Style Sheets|CSS]] to the header.
;headerstyle : add [[w:Cascading Style Sheets|CSS]] to the header.
;contentcss : add [[w:Cascading Style Sheets|CSS]] to the content box.
;contentstyle : add [[w:Cascading Style Sheets|CSS]] to the content box.


;fw1 : the font-weight for the heading (default "bold")
;fw2 : the font-weight for the body (default "normal")
;bg1 : the background-color for the heading (default "transparent")
;bg2 : the background-color for the body (default "transparent")
;ta1 : the text-align for the heading (default "center")
;ta2 : the text-align for the body (default "left")
<br/>'''Note:''' This template will not respect the user preference "justify paragraphs".
<br/>'''Note:''' This template will not respect the user preference "justify paragraphs".


==Examples==
==Examples==
===The simplest===
===Basic===
In this example only the two required parameters are specified.
In this example only the two required parameters are specified.
{| class="wikitable"
{| class="wikitable"
| {{rh}} | Code
| style="background: #ececec; color: black; font-weight: bold; vertical-align: middle; text-align: left" class="table-rh" | Code
| <pre>{{hidden|Title text here|Body text line 1<br/>Body text line 2}}</pre>
| <pre>{{hidden|Title text here|Body text line 1<br/>Body text line 2}}</pre>
|-
|-
| {{rh}} | Result
| style="background: #ececec; color: black; font-weight: bold; vertical-align: middle; text-align: left" class="table-rh" | Result
| {{hidden|Title text here|Body text line 1<br/>Body text line 2}}
| {{hidden|Title text here|Body text line 1<br/>Body text line 2}}
|}
|}
Line 37: Line 46:
===Header background===
===Header background===
{| class="wikitable"
{| class="wikitable"
| {{rh}} | Code
| style="background: #ececec; color: black; font-weight: bold; vertical-align: middle; text-align: left" class="table-rh" | Code
| <pre>{{hidden|Title text here|Body text line 1<br/>Body text line 2|bg1=#ccccff|ta2=center}}</pre>
| <pre style="overflow:auto;">
{{hidden
|Title text here
|Body text line 1<br/>Body text line 2
|headerstyle=background:#ccccff
|style=text-align:center;
}}
</pre>
|-
|-
| {{rh}} | Result
| style="background: #ececec; color: black; font-weight: bold; vertical-align: middle; text-align: left" class="table-rh" | Result
| {{hidden|Title text here|Body text line 1<br/>Body text line 2|bg1=#ccccff|ta2=center}}
| {{hidden|Title text here|Body text line 1<br/>Body text line 2|headerstyle=background:#ccccff|style=text-align:center;}}
|}
|}


===CSS===
===CSS===
{| class="wikitable"
{| class="wikitable"
| {{rh}} | Code
| style="background: #ececec; color: black; font-weight: bold; vertical-align: middle; text-align: left" class="table-rh" | Code
|  
|  
<pre>
<pre>
{{hidden
{{hidden
| headercss = background: #ccccff; font-size: 110%; width: 50%;
| style = border:1px dashed red; width: 50%;
| contentcss = text-align: center; font-size: 110%; width: 50%;
| headerstyle = background: #ccccff; font-size: 110%;
| contentstyle = text-align: center; color:green;
| header = Title text here
| header = Title text here
| content = Body text line 1<br/>Body text line 2<br/>Body text line 3
| content = Body text line 1<br />Body text line 2<br />Body text line 3
}}</pre>
}}</pre>
|-
|-
| {{rh}} | Result
| style="background: #ececec; color: black; font-weight: bold; vertical-align: middle; text-align: left" class="table-rh" | Result
|  
|  
{{hidden
{{hidden
| headercss = background: #ccccff; font-size: 110%; width: 50%;
| style = border:1px dashed red; width: 50%;
| contentcss = text-align: center; font-size: 110%; width: 50%;
| headerstyle = background: #ccccff; font-size: 110%;
| contentstyle = text-align: center; color:green;
| header = Title text here
| header = Title text here
| content = Body text line 1<br/>Body text line 2<br/>Body text line 3
| content = Body text line 1<br />Body text line 2<br />Body text line 3
}}
}}
|}
|}


===Lorem ipsum===
== See also ==
{| class="wikitable"
* [[Template:Collapse top]]
| {{rh}} | Code
| <pre>{{hidden|ta1=left|bg1=cyan|bg2=yellow|lorem ipsum|{{lorem ipsum}}}}</pre>
|-
| {{rh}} | Result
| {{hidden|ta1=left|bg1=cyan|bg2=yellow|lorem ipsum|{{lorem ipsum}}}}
|}
 
== Issues ==
=== Show/hide button overlap ===
With ta1=right or a long header, the header may overlap the show/hide button:
{{evd|hidden|Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.|def}}
 
;Example with long header
{{hidden|abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc |def}}
 
;Example with ta1=right
{{hidden|ta1=right|abc|def}}
 
;Example with ta1=right & first line blank
{{hidden|ta1=right|
&nbsp;
abc|def}}
 
=== Sections ===
Sections included inside a hidden block result in broken anchors in the table of contents at the top of the page.
{{hidden begin|title=example}}
==== You can't get here from the table of contents ====
{{hidden end}}
 
==See also==
* {{tiw|hidden begin}}
* {{tiw|hidden end}}
* {{tim|hidden}}.


<includeonly>
<includeonly>
[[Category:Wikipedia formatting templates|{{PAGENAME}}]]
[[Category:Formatting templates]]
 
[[bg:Шаблон:Скриване]]
[[ca:Template:Caixa ocultable]]
[[de:Vorlage:Navigationsleiste]]
[[dsb:Pśedłoga:Nawikašćik]]
<!-- [[en:Template:Hidden]] -->
[[eo:Ŝablono:Kaŝskatolo]]
[[fr:Modèle:Boîte déroulante]]
[[hsb:Předłoha:Nawigaciska lajsta]]
[[ia:Patrono:Hidden]]
[[it:Template:Cassetto]]
[[ko:틀:글 숨김]]
[[ja:Template:Hidden]]
[[pl:Szablon:Ukryte]]
[[pt:Predefinição:Oculto]]
[[ru:Шаблон:Навигационная полоса]]
[[sl:Predloga:Skrito]]
 
</includeonly>
</includeonly>

Latest revision as of 04:12, 14 May 2014

This template creates a dynamic navigation box using style sheet declarations in MediaWiki:Common.css and Javascript code in MediaWiki:Common.js. It displays the first parameter (the heading) with a [show] link on the right. If [show] is clicked by the user, the second parameter (the body) is displayed below the heading and the [show] link becomes [hide]. Clicking on [hide] then hides the body again and the [hide] link becomes [show] again.

The template does not provide an argument to designate the initial state of the show/hide control. In the nested case, show/hide controls in hidden content retain their state. There is no facility for collapse all or reveal all.

Usage

Syntax

{{Hidden
|header=
|content=
|style=
|headerstyle=
|contentstyle=
|fw1=
|fw2=
|bg1=
|bg2=
|ta1=
|ta2=
}}

Parameters

Only two parameters are required for this template:

header
text for header (or title); alternative to using unnamed parameter {{{1}}}
content
text for content (or body); alternative to using unnamed parameter {{{2}}}

Optional

style
add CSS to the main div.
headerstyle
add CSS to the header.
contentstyle
add CSS to the content box.


Note: This template will not respect the user preference "justify paragraphs".

Examples

Basic

In this example only the two required parameters are specified.

Code
{{hidden|Title text here|Body text line 1<br/>Body text line 2}}
Result

Header background

Code
{{hidden
|Title text here
|Body text line 1<br/>Body text line 2
|headerstyle=background:#ccccff
|style=text-align:center;
}}
Result

CSS

Code
{{hidden
| style = border:1px dashed red; width: 50%;
| headerstyle = background: #ccccff; font-size: 110%;
| contentstyle = text-align: center; color:green;
| header = Title text here
| content = Body text line 1<br />Body text line 2<br />Body text line 3
}}
Result

See also