问题
Help me out you sassy susy's, I am at my breaking point! I am trying to make the most efficient layout for my project, and I have come across something I havn't been able to figure out with Susy/breakpoint.
I want the layout columns to change at the breakpoints and not have to change all the individual spans of the div's (as there will be many different span widths with this way. Instead of just 1 and changing 3 or 4 different column layouts).
Right now the only way I was able to get this to work was by changing the spans of the divs and keeping the columns unchanged, but I would like the divs to always stay the same size and then just drop into place depending on how many columns are left to fill.
I think it is just the way I am writing the @include. I have tried doing container/layout inside the breakpoint instead of with-layout with no success. I know this is probably going to be a simple fix that I am just not seeing.
Edit: Also something I have noticed is that no matter how I change things the div is always taking the default $susy map and is not changing it at breakpoint.
SCSS:
@import 'susy';
@import 'breakpoint';
$layout1: layout(12 .125 split fluid center);
$layout2: layout(16 .125 split fluid center);
$layout3: layout(24 .125 split fluid center);
.container {
@include container;
@include with-layout($layout1);
background: orange;
@include breakpoint(600px) {
@include with-layout($layout2);
background: red;
}
@include breakpoint(1000px) {
@include with-layout($layout3);
background: blue;
}
}
.testbox {
@include span(1);
}
html:
<div class="container">
<div class="testbox">hello</div>
<div class="testbox">hello</div>
<div class="testbox">hello</div>
<div class="testbox">hello</div>
<div class="testbox">hello</div>
<div class="testbox">hello</div>
<div class="testbox">hello</div>
<div class="testbox">hello</div>
</div>
回答1:
with-layout
only changes the settings used for Susy mixins/functions nested inside it:
@include with-layout($layout2) {
// code nested here will use the $layout2 settings
}
You have nothing nested inside any call to with-layout
- therefor no changes. This is exactly what @cimmanon was trying to explain in the comments. Similarly, @media
only changes things nested directly inside it — so your colors change fine, but your spans don't. The colors are actually nested, the spans aren't.
Because Sass is pre-processed, span(1)
cannot have multiple outputs unless it is called multiple times. Right now you call it once, so it has one output. If you call it multiple times inside different layout contexts, you can get different outputs.
// This will give you different spans at different breakpoints:
@include breakpoint(600px) {
@include with-layout($layout2) {
@include span(1);
background: red;
}
}
// you can also use the susy-breakpoint shortcut:
@include susy-breakpoint(1000px, $layout3) {
@include span(1);
background: blue;
}
来源:https://stackoverflow.com/questions/27792173/susy-2-1-3-issue-regarding-layout-change-on-breakpoint