Modèle:MsgBox : Différence entre versions
(nom d'utilisateur retiré) |
m (→MsgBox ReadyToUse) |
||
Ligne 17 : | Ligne 17 : | ||
{{MsgBox|Cette page est protégée|Car elle est utilisée sur beaucoup de pages.}}<br/> | {{MsgBox|Cette page est protégée|Car elle est utilisée sur beaucoup de pages.}}<br/> | ||
− | == MsgBox | + | == MsgBox Prêt à l'emploi == |
Ce type de MsgBox est près a être utilisé. Vous avez juste besoin d'écrire leurs nom pour qu'ils apparessent. | Ce type de MsgBox est près a être utilisé. Vous avez juste besoin d'écrire leurs nom pour qu'ils apparessent. | ||
Veuillez de préférence utiliser ce type de MsgBox plutôt que les Personallisés: [[:Category:MsgBox_ReadyToUse|Liste des MsgBox ReadyToUse]]. | Veuillez de préférence utiliser ce type de MsgBox plutôt que les Personallisés: [[:Category:MsgBox_ReadyToUse|Liste des MsgBox ReadyToUse]]. |
Version du 12 juin 2012 à 17:15
La MsgBox vous permet d'écrire un message sur une page pour informer les utilisateurs. Comme ce message:
Cette page est protégée
Car elle est utilisée sur beaucoup de pages.
|
Sommaire
MsgBox Prêt à l'emploi
Ce type de MsgBox est près a être utilisé. Vous avez juste besoin d'écrire leurs nom pour qu'ils apparessent. Veuillez de préférence utiliser ce type de MsgBox plutôt que les Personallisés: Liste des MsgBox ReadyToUse.
Personalized MsgBox
Minimal call : Title
To make a minimal call to MsgBox, you just need to specify the title:
{{MsgBox|title=Hello !}}
Result:
Hello !
|
Text
You can add text under the title:
{{MsgBox|title=Hello !|text=World !}}
Result:
Hello !
World !
|
Theme
You can change the theme of the MsgBox. To change the theme, add the parameter "theme" as below:
{{MsgBox|title=Hello !|theme=NameOfTheme}}
There are currently 3 themes, replace "NameOfTheme" by one of them:
Name of theme | Result | ||
---|---|---|---|
blue (default theme) |
| ||
orange |
| ||
red |
|
Icon
You can change the icon in any image imported into the wiki, the recomended size is 35x35px.To change the icon, add the parameter "icon" as below:
{{MsgBox|title=Hello !|icon=nameOfIcon}}
Here is the list of recommended icon:
Name of icon | Icon |
---|---|
Template_MsgBox_blueInfo.png | Fichier:Template MsgBox blueInfo.png |
Template_MsgBox_orangeWarning.png | Fichier:Template MsgBox orangeWarning.png |
Template_MsgBox_redSerious.png | Fichier:Template MsgBox redSerious.png |
Template_MsgBox_Pen.png | Fichier:Template MsgBox Pen.png |
Colors of background and border
You can change the color of the border and background by adding the parameters "BorderColor" and "BgColor". You can use color names like "red" or "blue", or the hex value that you can recover on this site on the top: "#?????". Remember to write the # for this to work. Example:
{{MsgBox|title=Hello !|BgColor=#00FF44|BorderColor=#FF00AE}}
Result:
Hello !
|
Style of title and text
You can change the style of the title and text. To this add the parameters "TitleStyle" and "TextStyle". Complete them with CSS. Example:
{{MsgBox|title=Hello !|text=Yeeah|TitleStyle=color:#00FF44;text-decoration:underline;|TextStyle=border:solid Red 1px;}}
Result:
Hello !
Yeeah
|