Modèle:MsgBox : Différence entre versions
(→Structure minimale : Titre) |
(nom d'utilisateur retiré) |
||
Ligne 31 : | Ligne 31 : | ||
=== Text === | === Text === | ||
---- | ---- | ||
− | + | Vous pouvez ajouter du texte sous le titre | |
<pre>{{MsgBox|title=Hello !|text=World !}}</pre> | <pre>{{MsgBox|title=Hello !|text=World !}}</pre> | ||
'''Result:'''{{MsgBox|title=Hello !|text=World !}} | '''Result:'''{{MsgBox|title=Hello !|text=World !}} | ||
Ligne 37 : | Ligne 37 : | ||
=== Theme === | === Theme === | ||
---- | ---- | ||
− | + | vous pouvez changer les thème de la MsgBox. Pour changer les thème, ajoutez le paramétré "theme" comme ci-dessous: | |
− | <pre>{{MsgBox|title=Hello !|theme= | + | <pre>{{MsgBox|title=Hello !|theme=NomDuTheme}}</pre> |
− | + | Il y a actuelement 3 thèmes, remplacez "NomDuTheme" par l'un d'entre eux: | |
{|class="wikitable" style="width:100%;text-align:center;" | {|class="wikitable" style="width:100%;text-align:center;" | ||
− | !scope="col"| | + | !scope="col"| Nom du thème |
− | !scope="col"| | + | !scope="col"| Resultat |
|- | |- | ||
− | | | + | | bleu<br/>(thème par défaut) |
− | | {{MsgBox|title= | + | | {{MsgBox|title=Voici le thème bleu|theme=bleu}} |
|- | |- | ||
| orange | | orange | ||
− | | {{MsgBox|title= | + | | {{MsgBox|title=Voici le thème orange|theme=orange}} |
|- | |- | ||
− | | | + | | rouge |
− | | {{MsgBox|title= | + | | {{MsgBox|title=Voici le thème rouge|theme=rouge}} |
|} | |} | ||
=== Icon === | === Icon === | ||
---- | ---- | ||
− | + | Vous pouvez changer l’icône en n'importe quelle image importée sur le wiki. La taille recommandé est de 45x35px. Pour changer l’icône, ajoutez le paramétré "icon" comme ci-dessous: | |
− | <pre>{{MsgBox|title=Hello !|icon= | + | <pre>{{MsgBox|title=Hello !|icon=NomDeIcone}}</pre> |
− | + | Voici la liste des icônes recommandés: | |
{|class="wikitable" | {|class="wikitable" | ||
− | !scope="col"| | + | !scope="col"| Nom de l'icône |
− | !scope="col"| | + | !scope="col"| Icone |
|- | |- | ||
− | | | + | | Template_MsgBox_bleuInfo.png |
− | | [[file: | + | | [[file:Template_MsgBox_bleuInfo.png]] |
|- | |- | ||
− | | | + | | Template_MsgBox_orangeAttention.png |
− | | [[file: | + | | [[file:Template_MsgBox_orangeAttention.png]] |
|- | |- | ||
− | | | + | | Template_MsgBox_rougeSerieux.png |
− | | [[file: | + | | [[file:Template_MsgBox_rougeSerieux.png]] |
|- | |- | ||
− | | | + | | Template_MsgBox_Stylo.png |
− | | [[file: | + | | [[file:Template_MsgBox_Stylo.png]] |
|} | |} | ||
=== Colors of background and border === | === Colors of background and border === |
Version du 12 juin 2012 à 17:51
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 Personnalisées: Liste des MsgBox ReadyToUse.
MsgBox personnalisée
Structure minimale : Titre
Il y a un seul paramètre obligatoire, le titre.
{{MsgBox |title=Salut !}}
Resultat:
Salut !
|
Text
Vous pouvez ajouter du texte sous le titre
{{MsgBox|title=Hello !|text=World !}}
Result:
Hello !
World !
|
Theme
vous pouvez changer les thème de la MsgBox. Pour changer les thème, ajoutez le paramétré "theme" comme ci-dessous:
{{MsgBox|title=Hello !|theme=NomDuTheme}}
Il y a actuelement 3 thèmes, remplacez "NomDuTheme" par l'un d'entre eux:
Nom du thème | Resultat | ||
---|---|---|---|
bleu (thème par défaut) |
| ||
orange |
| ||
rouge |
|
Icon
Vous pouvez changer l’icône en n'importe quelle image importée sur le wiki. La taille recommandé est de 45x35px. Pour changer l’icône, ajoutez le paramétré "icon" comme ci-dessous:
{{MsgBox|title=Hello !|icon=NomDeIcone}}
Voici la liste des icônes recommandés:
Nom de l'icône | Icone |
---|---|
Template_MsgBox_bleuInfo.png | |
Template_MsgBox_orangeAttention.png | |
Template_MsgBox_rougeSerieux.png | |
Template_MsgBox_Stylo.png | Fichier:Template MsgBox Stylo.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
|