Help:Gallery: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
mNo edit summary
Line 37: Line 37:
=== Supported classes ===
=== Supported classes ===
* <code>rawsize</code> - Prevent the image from being upscaled
* <code>rawsize</code> - Prevent the image from being upscaled
** <code>rawsize x2</code>/<code>x4</code>/<code>x8</code> - Scale a specific amount
** <code>rawsize x2</code>/<code>x3</code>/<code>x4</code>/<code>x8</code> - Scale a specific amount
* <code>blackbg</code> / <code>graybg</code> - Change the background color of the image container
* <code>blackbg</code> / <code>graybg</code> - Change the background color of the image container
* <code>invert-light</code> / <code>invert-dark</code> - Invert the image in the wiki's light or dark mode
* <code>invert-light</code> / <code>invert-dark</code> - Invert the image in the wiki's light or dark mode

Revision as of 21:49, July 14, 2024

This help page covers how to create an image gallery.

Gallery basics

Galleries are best used in situations where many images need to be displayed. Galleries are like thumbnails boxed together in a table.

By default, galleries have a fluid width. Do not create galleries with a fixed width on any page outside of your userspace.

The basic syntax for a gallery is as follows:

<gallery>
Image name.ext|Caption
</gallery>

Example

Source code

<gallery>
MarioMP8Artwork.png|[[Mario]]
Luigi Artwork - Mario Party 7.png|[[Luigi]]
NSMBDS Bowser Artwork.png|[[Bowser]]
</gallery>

Advanced options

In rare instances, it may be necessary to change the image widths, heights, and even background color in order to display them properly in a gallery.

This can be accomplished using the widths, heights, and class parameters, respectively.

Supported classes

  • rawsize - Prevent the image from being upscaled
    • rawsize x2/x3/x4/x8 - Scale a specific amount
  • blackbg / graybg - Change the background color of the image container
  • invert-light / invert-dark - Invert the image in the wiki's light or dark mode

Example

Source code

<gallery class="blackbg rawsize x4" widths="50" heights="50">
SM64 Asset Sprite CS Mario.png|Mario
SM64 Asset Sprite CS Coin.png|Yellow Coin
SM64 Asset Sprite CS Power Star.png|Power Star
</gallery>

The above method applies a class to all images in the gallery. For details on how to apply classes on a per-image basis, see Template:Class.

Galleries in articles

See MarioWiki:Galleries for details on how article gallery sections and dedicated gallery pages should be laid out.