Elastyczne kreacje do projektowania witryn internetowych często istnieją w kilku różnych punktach przerwania. Zarządzanie tymi punktami przerwania nie zawsze jest łatwe. Korzystanie z nich i aktualizowanie ich może być czasem uciążliwe. Stąd potrzeba mixinu do obsługi konfiguracji i użytkowania punktu przerwania.
Prosta wersja
Najpierw potrzebujesz mapy punktów przerwania powiązanych z nazwami.
$breakpoints: ( 'small': 767px, 'medium': 992px, 'large': 1200px ) !default;
Następnie mikser użyje tej mapy.
/// 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))."; ) )
Stosowanie:
.selector ( color: red; @include respond-to('small') ( color: blue; ) )
Wynik:
.selector ( color: red; ) @media (min-width: 767px) ( .selector ( color: blue; ) )
Wersja zaawansowana
Prosta wersja umożliwia tylko korzystanie z min-width
zapytań o media. Aby używać bardziej zaawansowanych zapytań, możemy zmodyfikować naszą początkową mapę i trochę ją wymieszać.
$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))."; ) )
Stosowanie:
.selector ( color: red; @include respond-to('small') ( color: blue; ) )
Wynik:
.selector ( color: red; ) @media (min-width: 767px) ( .selector ( color: blue; ) )