Ga direct naar inhoud

Terug naar hoofdmenu knop

Benodigde stappen:

  1. Voeg de benodigde bestanden toe aan het project. Voor een overzicht van de benodigde en optionele bestanden zie: Bijbehorende bestanden.
  2. Vul de variabelen met de gewenste stijlkeuzes. Voor meer informatie zie het overzicht met instelbare variabelen.
  3. Voeg de knop aan het einde van de <main> toe.
  4. Voeg de link naar de hoofdnavigatie toe.
    • Voeg aan de hoofdnavigatie een id toe. Bijvoorbeeld: "main-content".
    • Voeg binnen de link de corresponderende verwijzing toe. Zie het HTML-voorbeeld voor meer informatie.

Voorbeelden:

Visueel voorbeeld:

Zie de knop rechtsonder in beeld voor het visuele voorbeeld.

HTML-voorbeeld:

To-top link

<a href="#main-content" class="button to-top icon icon-ascending" title="Terug naar het hoofdmenu">Terug naar het hoofdmenu</a>

Structuur

<main id="main-content">
  <!-- content within the main component -->
  <a href="#main-content" class="button to-top icon icon-ascending" title="Terug naar het hoofdmenu">Terug naar het hoofdmenu</a>
</main>

Bijbehorende bestanden

Voor meer informatie over importeren en instellen van componenten. Zie: Componenten gebruiken en styling toevoegen

Importeer component via npm

CSS-voorbeeld:

@use "@minvws/manon/button-to-top";

Instelbare variabelen

Beschikbare instelbare variabelen:
VariabeleCSS-attribuutManon ingestelde waardeBreekpuntClass
--button-to-top-positionpositionfixed-to-top
--button-to-top-background-colorbackground-colorvar(--application-base-accent-color)-
--button-to-top-text-colorcolorvar(--application-base-accent-color-text-color)-
--button-to-top-bottombottom1rem-
--button-to-top-rightright1rem-
--button-to-top-leftleftauto-
--button-to-top-font-sizefont-size0-
--button-to-top-widthwidth2.75rem-
--button-to-top-heightheight2.75rem-
--button-to-top-min-heightmin-heightvar(--button-to-top-width)-
--button-to-top-min-widthmin-widthvar(--button-to-top-height)-
--button-to-top-border-radiusborder-radius50%-
--button-to-top-border-widthborder-width0-
--button-to-top-border-styleborder-stylesolid-
--button-to-top-border-colorborder-colortransparent-
--button-to-top-hover-background-colorbackground-colorvar(--application-base-accent-color-hover)-
--button-to-top-hover-text-colortext-colorvar(--application-base-accent-color-hover-text-color)-
--button-to-top-hover-border-colortext-border-colortransparent-

CSS

Overzicht van de beschikbare variabelen om te kunnen gebruiken binnen de CSS van jouw project. Kies en gebruik de benodigde variabelen.

:root {
  --button-to-top-position: ;
  --button-to-top-background-color: ;
  --button-to-top-text-color: ;
  --button-to-top-bottom: ;
  --button-to-top-right: ;
  --button-to-top-left: ;
  --button-to-top-font-size: ;
  --button-to-top-width: ;
  --button-to-top-height: ;
  --button-to-top-min-width: ;
  --button-to-top-min-height: ;
  --button-to-top-border-radius: ;
  --button-to-top-border-width: ;
  --button-to-top-border-style: ;
  --button-to-top-border-color: ;

  /* Hover */
  --button-to-top-hover-background-color: ;
  --button-to-top-hover-text-color: ;
  --button-to-top-hover-border-color: ;
}
Terug naar het hoofdmenu