Template:Hide: Difference between revisions

Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
m
Text replacement - "<br>" to "<br/>"
mNo edit summary
m (Text replacement - "<br>" to "<br/>")
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{#switch:{{{1|}}}
{{#switch:{{{1|}}}
|#default=<span class="_togglegroup _toggle_initshow _toggle _toggler toggle-visible" style="display:none;">{{{show|[show]}}}</span><span class="_toggle_inithide _toggle _toggler toggle-hidden" style="display:none;">{{{hide|[hide]}}}</span><div class="_toggle_inithide _toggle toggle-hidden">{{{content|{{{1}}}}}}</div>
| ~button = <span class="_togglegroup _toggle_initshow _toggle _toggler toggle-visible" style="{{{style|{{{showstyle|}}}}}}">{{{show|[show]}}}</span><span class="_toggle_inithide _toggle _toggler toggle-hidden" style="display:none; {{{style|{{{hidestyle|}}}}}}">{{{hide|[hide]}}}</span>
|~button=<span class="_togglegroup _toggle_initshow _toggle _toggler toggle-visible" style="display:none; {{{style|{{{showstyle|}}}}}}">{{{show|[show]}}}</span><span class="_toggle_inithide _toggle _toggler toggle-hidden" style="display:none; {{{style|{{{hidestyle|}}}}}}">{{{hide|[hide]}}}</span>
| ~content = <div class="_toggle_inithide _toggle toggle-hidden" style="{{{style|{{{3|}}}}}}">{{{content|{{{2|}}}}}}</div>
|~content=<div class="_toggle_inithide _toggle toggle-hidden" style="{{{style|{{{3|}}}}}}">{{{content|{{{2|}}}}}}</div>
| ~all = <span class="_toggler_show-toggle-hidden _toggler_hide-toggle-visible _toggler-hideall _toggler-showall showall" style="{{{showstyle|}}}">{{{showtext|[show all]}}}</span><span class="_toggler_hide-toggle-hidden _toggler_show-toggle-visible _toggler-showall _toggler-hideall hideall" style="display:none; {{{hidestyle|}}}">{{{hidetext|[hide all]}}}</span>
|~showall=<span class="_toggler_show-toggle-hidden _toggler_hide-toggle-visible" style="{{{style|{{{3|}}}}}}">{{{text|{{{2|[show all]}}}}}}</span>
| #default = <span class="_togglegroup _toggle_initshow _toggle _toggler toggle-visible">{{{show|[show]}}}</span><span class="_toggle_inithide _toggle _toggler toggle-hidden" style="display:none;">{{{hide|[hide]}}}</span><div class="_toggle_inithide _toggle toggle-hidden">{{{content|{{{1}}}}}}</div>
|~hideall=<span class="_toggler_hide-toggle-hidden _toggler_show-toggle-visible" style="{{{style|{{{3|}}}}}}">{{{text|{{{2|[hide all]}}}}}}</span>
}}<noinclude>
}}<noinclude>
==Purpose==
==Purpose==
This template allows easy hiding of text and other content.
This template allows easy hiding of text and other content.
Line 25: Line 25:
{{clear}}
{{clear}}
===Advanced Usage===
===Advanced Usage===
If this isn't enough, the template can be used in parts instead, for more flexible use within tables and div boxes. Advanced wiki-coding knowledge is suggested for using the hide template in this way.<br>
If this isn't enough, the template can be used in parts instead, for more flexible use within tables and div boxes. Advanced wiki-coding knowledge is suggested for using the hide template in this way.<br/>
For advanced usage, use this code:
For advanced usage, use this code:
<div style="float:left; margin-right:20px"><pre>
<div style="float:left; margin-right:20px"><pre>
Line 31: Line 31:
{{hide|~content|content=|style=}}
{{hide|~content|content=|style=}}
</pre></div>
</pre></div>
The button can be placed anywhere before <nowiki>{{hide|~begin}}</nowiki>. It will only affect the next instance of <nowiki>{{hide|~begin}}</nowiki>. Future instances require another button. The ''style'' parameter for the button is to add styling for the button's span tags. This parameter styles both the show and hide version of the button. To style each version of the button seperately, omit the ''style'' parameter and instead use the ''showstyle'' and ''hidestyle'' parameters to style the show and hide version of the button, respectively.<br>The ''style'' parameter on the content is to enter any styling directly in to the div for the content, in addition to any other styling you use outside of it. You can delete the ''show'' and ''hide'' parameters if you do not wish to change them from their defaults.
The button can be placed anywhere before <nowiki>{{hide|~content}}</nowiki>. It will only affect the next instance of <nowiki>{{hide|~content}}</nowiki>. Future instances require another button. The ''style'' parameter for the button is to add styling for the button's span tags. This parameter styles both the show and hide version of the button. To style each version of the button seperately, omit the ''style'' parameter and instead use the ''showstyle'' and ''hidestyle'' parameters to style the show and hide version of the button, respectively.<br/>The ''style'' parameter on the content is to enter any styling directly in to the div for the content, in addition to any other styling you use outside of it. You can delete the ''show'' and ''hide'' parameters if you do not wish to change them from their defaults.


Note that you can also use images in place of text for the buttons. However, in order for them to function properly, the images must be set to link to nothing, instead of some other page or its own page.
Note that you can also use images in place of text for the buttons. However, in order for them to function properly, the images must be set to link to nothing, instead of some other page or its own page.


{{clear}}
{{clear}}
====Special Buttons====
====Show All and Hide All====
There are two special buttons available that can affect all instances of the hide template on a page. One is ''show all'', that will show all instances of the hide template on a page, and the other is ''hide all'', which does the opposite.
There is a special button available that can affect all instances of the hide template on a page. It will open all instances of the hide template on the page, clicking it again will hide all of them.


Both have two ways to be used.
To use the button, you can just use:
*show all
{{Desc|Normal|~all}}
{{Desc|Normal|~showall|text|style}}
::<div style="float:left; margin-right:20px"><pre>{{Hide|~showall|text=|style=}}</pre></div>
{{Parameter|text|Text text displayed for the button|Optional|[show all]}}
{{Parameter|style|Any styling options to apply to the button if desired.|Optional}}
{{clear}}
{{clear}}
*hide all
For more advanced handling, the following is available
{{Desc|Normal|~hideall|text|style}}
<div style="float:left; margin-right:20px"><pre>
::<div style="float:left; margin-right:20px"><pre>{{Hide|~hideall|text=|style=}}</pre></div>
{{Hide|~all|showtext=|showstyle=|hidetext=|hidestyle=}}</pre></div>
{{Parameter|text|This specifies the text of the link that shows the content that is initially hidden.|Optional|[hide all]}}
{{Parameter|showtext|Text text displayed for the show all version of the button.|Optional|[show all]}}
{{Parameter|style|Any styling options to apply to the button if desired.|Optional}}
{{Parameter|showstyle|Any styling options to apply to the show all version of the button if desired.|Optional}}
{{Parameter|hidetext|The text to show for the button to hide all the content again.|Optional|[hide all]}}
{{Parameter|hidestyle|Any styling options to apply to the hide all version of the button if desired.|Optional}}


{{clear}}
{{clear}}
==Example==
==Example==
To hide some text, use the following:
To hide some text, use the following:
Line 95: Line 94:
Basic show all and hide all buttons:
Basic show all and hide all buttons:
<div style="float:left; margin-right:20px"><pre>
<div style="float:left; margin-right:20px"><pre>
{{hide|~showall}} {{hide|~hideall}}
{{hide|~all}}
</pre></div>{{clear}}
</pre></div>{{clear}}
This results in:
This results in:
:{{hide|~showall}} {{hide|~hideall}}
:{{hide|~all}}
{{clear}}
{{clear}}
{{Cat|Formatting Templates}}</noinclude>
{{Cat|Formatting Templates}}</noinclude>

Navigation menu