Mixin na správu hraničných hodnôt Triky CSS

Anonim

Responzívne výtvory webdizajnu často existujú v niekoľkých rôznych bodoch zlomu. Správa týchto hraničných hodnôt nie je vždy jednoduchá. Ich používanie a aktualizácia môže byť niekedy únavné. Z tohto dôvodu je potrebné, aby mixin zvládol konfiguráciu a použitie zlomových bodov.

Jednoduchá verzia

Najskôr potrebujete mapu hraničných bodov spojenú s menami.

$breakpoints: ( 'small': 767px, 'medium': 992px, 'large': 1200px ) !default;

Mixin potom použije túto mapu.

/// Mixin to manage responsive breakpoints /// @author Hugo Giraudel /// @param (String) $breakpoint - Breakpoint name /// @require $breakpoints @mixin respond-to($breakpoint) ( // If the key exists in the map @if map-has-key($breakpoints, $breakpoint) ( // Prints a media query based on the value @media (min-width: map-get($breakpoints, $breakpoint)) ( @content; ) ) // If the key doesn't exist in the map @else ( @warn "Unfortunately, no value could be retrieved from `#($breakpoint)`. " + "Available breakpoints are: #(map-keys($breakpoints))."; ) )

Použitie:

.selector ( color: red; @include respond-to('small') ( color: blue; ) )

Výsledok:

.selector ( color: red; ) @media (min-width: 767px) ( .selector ( color: blue; ) )

Pokročilá verzia

Jednoduchá verzia umožňuje používať iba min-widthmediálne dotazy. Ak chcete použiť pokročilejšie dotazy, môžeme doladiť našu pôvodnú mapu a trochu ju zamiešať.

$breakpoints: ( 'small': ( min-width: 767px ), 'medium': ( min-width: 992px ), 'large': ( min-width: 1200px ) ) !default;
/// Mixin to manage responsive breakpoints /// @author Hugo Giraudel /// @param (String) $breakpoint - Breakpoint name /// @require $breakpoints @mixin respond-to($breakpoint) ( // If the key exists in the map @if map-has-key($breakpoints, $breakpoint) ( // Prints a media query based on the value @media #(inspect(map-get($breakpoints, $breakpoint))) ( @content; ) ) // If the key doesn't exist in the map @else ( @warn "Unfortunately, no value could be retrieved from `#($breakpoint)`. " + "Available breakpoints are: #(map-keys($breakpoints))."; ) )

Použitie:

.selector ( color: red; @include respond-to('small') ( color: blue; ) )

Výsledok:

.selector ( color: red; ) @media (min-width: 767px) ( .selector ( color: blue; ) )