Mixin a töréspontok kezeléséhez - CSS-trükkök

Anonim

Az adaptív webdesign-alkotások gyakran több különböző törésponton is léteznek. Ezeknek a töréspontoknak a kezelése nem mindig egyszerű. Használatuk és frissítésük néha unalmas lehet. Ezért szükség van egy mixinnek a töréspont konfigurálásához és használatához.

Egyszerű változat

Először szükség van a nevekhez társított töréspontok térképére.

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

Ezután a mixin ezt a térképet fogja használni.

/// 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))."; ) )

Használat:

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

Eredmény:

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

Haladó verzió

Az egyszerű verzió csak a min-widthmédia lekérdezések használatát teszi lehetővé . Haladóbb lekérdezésekhez módosíthatjuk a kezdeti térképünket, és egy kicsit keverhetjük.

$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))."; ) )

Használat:

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

Eredmény:

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