I am trying to fill the Frameless grid dynamically (with a Rails loop) and it is not quite working out..
I understand LESS and the concept of using @1col (@2cols etc..) as variables. But the example that is presented on the site (or rather that is embedded in the site, framelessgrid.com/) shows the use of a large number of hard-coded columns..
Here is the parts of code from framelessgrid.com
LESS file:
@font-size: 17;
@line: 24;
@em: @font-size*1em;
@column: 48;
@gutter: 24;
@1col:( 1 * (@column + @gutter) - @gutter) / @em;
@1cols: @1col;
@2cols:( 2 * (@column + @gutter) - @gutter) / @em;
@3cols:( 3 * (@column + @gutter) - @gutter) / @em;
@4cols:( 4 * (@column + @gutter) - @gutter) / @em;
@5cols:( 5 * (@column + @gutter) - @gutter) / @em;
@6cols:( 6 * (@column + @gutter) - @gutter) / @em;
@7cols:( 7 * (@column + @gutter) - @gutter) / @em;
@8cols:( 8 * (@column + @gutter) - @gutter) / @em;
@9cols:( 9 * (@column + @gutter) - @gutter) / @em;
@10cols: (10 * (@column + @gutter) - @gutter) / @em;
@11cols: (11 * (@column + @gutter) - @gutter) / @em;
@12cols: (12 * (@column + @gutter) - @gutter) / @em;
@13cols: (13 * (@column + @gutter) - @gutter) / @em;
@14cols: (14 * (@column + @gutter) - @gutter) / @em;
@15cols: (15 * (@column + @gutter) - @gutter) / @em;
@16cols: (16 * (@column + @gutter) - @gutter) / @em;
.width (@cols:1) {
width: (@cols * (@column + @gutter) - @gutter) / @em;
}
//....
article section, #colophon {
padding: 0 18/@em;
margin: 0 auto;
max-width: @8cols;
}
#grid {
height: @4cols;
position: relative;
overflow: hidden;
}
.col {
background: @highlight;
height: 100%;
width: @1col;
position: absolute;
left: 50%; top: 0;
margin-left: 12/@em;
}
#grid .col {
.transition(background-color 0.382s ease-out);
}
.col2 {margin-left: (1*72+12)/@em;}
.col3 {margin-left: (2*72+12)/@em;}
.col4 {margin-left: (3*72+12)/@em;}
.col5 {margin-left: (4*72+12)/@em;}
.col6 {margin-left: (5*72+12)/@em;}
.col7 {margin-left: (6*72+12)/@em;}
.col8 {margin-left: (7*72+12)/@em;}
.col9 {margin-left: (8*72+12)/@em;}
.col10 {margin-left: (9*72+12)/@em;}
.col11 {margin-left: (10*72+12)/@em;}
.col12 {margin-left: (11*72+12)/@em;}
.col13 {margin-left: (12*72+12)/@em;}
.col14 {margin-left: (13*72+12)/@em;}
.col15 {margin-left: (14*72+12)/@em;}
.col16 {margin-left: (15*72+12)/@em;}
.col17 {margin-left: (16*72+12)/@em;}
.col18 {margin-left: (17*72+12)/@em;}
.col19 {margin-left: -(1*72-12)/@em;}
.col20 {margin-left: -(2*72-12)/@em;}
.col21 {margin-left: -(3*72-12)/@em;}
.col22 {margin-left: -(4*72-12)/@em;}
.col23 {margin-left: -(5*72-12)/@em;}
.col24 {margin-left: -(6*72-12)/@em;}
.col25 {margin-left: -(7*72-12)/@em;}
.col26 {margin-left: -(8*72-12)/@em;}
.col27 {margin-left: -(9*72-12)/@em;}
.col28 {margin-left: -(10*72-12)/@em;}
.col29 {margin-left: -(11*72-12)/@em;}
.col30 {margin-left: -(12*72-12)/@em;}
.col31 {margin-left: -(13*72-12)/@em;}
.col32 {margin-left: -(14*72-12)/@em;}
.col33 {margin-left: -(15*72-12)/@em;}
.col34 {margin-left: -(16*72-12)/@em;}
.col35 {margin-left: -(17*72-12)/@em;}
.col36 {margin-left: -(18*72-12)/@em;}
.col1, .col2, .col3, .col4, .col19, .col20, .col21, .col22 {
background: @emphasis;
}
HTML file:
<article>
<figure id="grid">
<div class="col col1"></div>
<div class="col col2"></div>
<div class="col col3"></div>
<div class="col col4"></div>
<div class="col col5"></div>
<div class="col col6"></div>
<div class="col col7"></div>
<div class="col col8"></div>
<div class="col col9"></div>
<div class="col col10"></div>
<div class="col col11"></div>
<div class="col col12"></div>
<div class="col col13"></div>
<div class="col col14"></div>
<div class="col col15"></div>
<div class="col col16"></div>
<div class="col col17"></div>
<div class="col col18"></div>
<div class="col col19"></div>
<div class="col col20"></div>
<div class="col col21"></div>
<div class="col col22"></div>
<div class="col col23"></div>
<div class="col col24"></div>
<div class="col col25"></div>
<div class="col col26"></div>
<div class="col col27"></div>
<div class="col col28"></div>
<div class="col col29"></div>
<div class="col col30"></div>
<div class="col col31"></div>
<div class="col col32"></div>
<div class="col col33"></div>
<div class="col col34"></div>
<div class="col col35"></div>
<div class="col col36"></div>
</figure>
</article>
So the columns with classes col2 to col18 start showing up in the middle of the screen and go to the right, columns from сcol19 – col36 go from center to the left..
How can I use this concept with a dynamic creation of columns??
I want to do something like:
<figure id="grid">
<% My_model.all.each do |m| %>
<div class="col col1"> <%= m.content %> </div>
<% end %>
</div>
This however will start populating the grid from the middle of the screen (due to CSS in .col):
.col{left: 50%;}
Of course I can switch to left:0 but it kind of negates the concept of Frameless (pt. 3 in Framelessgrid.com :
- Center it in the viewport.
Align your grid horizontally to the middle of your viewport. For a grid with an even number of columns (pictured), align the center point of your viewport in the middle of the gutter between your two centermost columns. For an odd-numbered grid, align it in the middle of your centermost column.
So how do I stick to this concept but a create / populate columns dynamically from a loop ?
So since this question got a vote..
Here is how I recreated the grid via Rails erb code (keeping the absolute positioning). I needed a column about 12 columns wide so I just looped to the left and to the right.
Added to LESS file:
Controller:
HTML:
Here is, however a better (more real-world-like) example, of doing a fixed-width column responsive grid :
LESS file:
HTML file: