- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试动态填充无框架网格(使用 Rails 循环),但效果并不理想。
我了解 LESS 以及使用 @1col(@2cols 等)作为变量的概念。但是网站上提供的示例(或者更确切地说,嵌入在网站 framelessgrid.com/中的示例)显示了使用大量硬编码列的情况。
以下是framelessgrid.com的部分代码
更少的文件:
@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 文件:
<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>
因此,类为 col2 到 col18 的列开始出现在屏幕中间并向右移动,从 сcol19 到 col36 的列从中间向左移动。
如何将这个概念用于动态创建列?
我想做这样的事情:
<figure id="grid">
<% My_model.all.each do |m| %>
<div class="col col1"> <%= m.content %> </div>
<% end %>
</div>
然而,这将从屏幕中间开始填充网格(由于 .col 中的 CSS):
.col{left: 50%;}
当然我可以切换到 left:0 但这有点否定了 Frameless 的概念(Framelessgrid.com 中的第 3 部分:
- 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.
那么除了从循环中动态创建/填充列之外,我该如何坚持这个概念呢?
最佳答案
所以既然这个问题得到了投票..
以下是我如何通过 Rails erb 代码重新创建网格(保持绝对定位)。我需要一个大约 12 列宽的列,所以我只是向左和向右循环。
添加到 LESS 文件:
.contain{
width: @6cols;
height: @2cols;
margin-bottom: @gutter/@em;
}
Controller :
def index
@counter = 0
@ticker = 0
end
HTML:
<figure id="grid">
<% MyModel.all.each_with_index do |p, i| %>
<div class = "contain" >
<% @counter = @counter + 2 %>
<div class="col col<%= @counter %>" id ="message_text"> <%= @counter %> || <%= i %>
</div>
<% if @counter == 5 %>
<% @counter = 18 %>
</div>
<div class ="return"></div>
<% elsif @counter == 24 %>
<% @counter = -1 %>
<% if @ticker == 0 %>
</div>
<div class ="return"></div>
<% end %>
<% end %>
<% @ticker = 1 %>
<% end %>
</figure>
然而,这是一个更好的(更真实的)例子,做一个固定宽度的列响应网格:
更少的文件:
@column: 85; // The column-width of your grid in pixels
@gutter: 20; // The gutter-width of your grid in pixels
@half_gutter : @gutter / 2;
@model_fix : 7.5/@em;
#build figure {
height: 100%;
background: @background;
position: absolute;
overflow: none;
margin: 0 @gutter/@em;
}
#build .col {
float: left;
left: 0;
background: white;
}
.col {
height: @1col;
width: @1col;
position: absolute;
margin: 0 @half_gutter/@em @gutter/@em @half_gutter/@em;
}
@media screen and (min-width: 78.750em) {
.offset {
left: 50% - @8cols ;
}
#build figure {
height: 100%;
background: @background;
position: relative;
overflow: none;
margin: 0 auto 0 (@half_gutter - 4)/@em;
width: @12cols + @gutter/@em;
}
}
.message_text .col {
width: @2cols;
height: @2cols - @model_fix*2;
position: relative;
color: @grey_text;
}
.message_text #mess_text{
font-size: 14/@em;
margin: @half_gutter / @em;
}
HTML 文件:
<body>
<article>
<section id="build">
<figure id = "models" class ="offset">
<% @scenes.each_with_index do |s, i | %>
<div class ="message_text ">
<div class="col">
<div id = "model_text" >
<%= link_to s.title, scene_path(s) %>
</div>
</div>
</div>
<% end %>
</figure>
</section>
</article>
</body>
关于html - 如何动态填充无框网格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12029732/
您能否建议如何在 Bootstrap 或 IE 兼容的 CSS 网格中,在没有 CSS 网格的情况下进行以下布局。 在大屏幕中 头部,左侧堆叠的 body 和右侧覆盖头部和 body 高度的图像。 [
我想在 Objective-C 中绘制一个 15*15 的网格。格子颜色是蓝色的,就像在诺基亚制作“贪吃蛇”游戏的棋盘一样。 我试过使用 for 循环来创建 subview ,但它似乎不起作用,我查看
我正在尝试将 CSS 网格与 grid-template-columns: repeat(auto-fill, auto) 一起使用,单元格被设置为最大宽度,导致每行一个元素。 p> 是否可以让元素宽
我正在努力在网格的自定义列上添加一个指向网站的简单、简单的链接。我用了 Inchoo blog为列添加自定义渲染器,它可以工作。我认为只需修改渲染并添加标签就足够了。但我的希望破灭了,行不通。 如何做
使用 Gnuplot 我绘制了下图 - 现在,正如您在图像中看到的那样,很难在线条之间识别出其末端的块。所以我想用不同的颜色或样式交替着色网格。 我现在用来给网格着色的代码是 - set style
假设我有一个非常简单的 WPF 网格(6 行 x 6 列),定义如下:
我有一个希望绑定(bind)到 WPF 网格的集合。 我面临的问题是列数是动态的并且取决于集合。这是一个简单的模型: public interface IRows { string Messa
我正在使用 Vaadin 8,我想制作某种混淆矩阵。我想知道是否可以根据单元格位置而不是数据提供者手动填充表格/网格的值。 referenceTable.addColumn(reference ->
我在 http://jsfiddle.net/TsRJy/ 上创建了一个带有 div 框的网格. 问题 我不知道如何使 a:hover 工作。 信息 重写 HTML 代码,因为表格不适合我。 http
银光处女在这里。如何使网格周围的用户控件自动调整大小以适应内部网格宽度?目前,当浏览器窗口更宽时,用户控件的显示尺寸约为 300 或 400 像素。它在数据网格周围呈现垂直和水平滚动条,这很丑陋。我想
这个问题已经有答案了: Equal width columns in CSS Grid (11 个回答) 已关闭 2 年前。 使用 CSS Grid,当您不知道会有多少个子项时,如何将所有子项保留在一
我想使用 CSS Grid 的 grid-template-areas。 但问题是我正在使用的 CMS 添加了大量额外的包装器。有没有办法忽略额外的包装?因为它弄乱了漂亮的网格区域...... 我正在
在我的Grid中,当我单击“操作”按钮(下面的代码中显示的“删除和编辑”按钮)时,我需要弹出一个窗口,而不用警告消息提醒用户; 在下面的代码中,我正在使用HANDLER handler: button
这个问题已经有答案了: Equal width columns in CSS Grid (11 个回答) 已关闭 2 年前。 使用 CSS Grid,当您不知道会有多少个子项时,如何将所有子项保留在一
我需要模拟一个仓库,其中有几辆自动驾驶车辆在给定的布局上移动,并具有简单的优先级规则。根据我的理解,这个问题可以通过离散事件模拟(DES)轻松解决,我会使用 SimPy为了这。 我看到的问题是,我似乎
在 ASP.NET 中,我可以让用户控件在页面上的表格中占据多个单元格: 用户控件1: foo bar 第1页: 并且自动调整列宽以适应最大的用户控件。 这也可以在 WPF
我正在寻找一种方法来实时搜索我的网格+要过滤的复选框。我有一个包含学生的网格(照片和姓名)。我想要的是有一个复选框,可以过滤学生所在的不同类(class)。还有一个搜索栏,我可以在其中输入学生姓名。
我正在使用 jQuery 和 jQuery UI 构建一个 Web 应用程序。我陷入了僵局。我需要的是一个 jQuery 网格,它具有可编辑字段,并以某种方式在这些可编辑单元格之一上合并一个自动完成字
我想知道是否有其他 JavaScript 组件可以提供具有多个分组的网格表示。下面是jqGrid的截图我扩展了允许该功能,但它需要获取所有数据。我希望在扩展分组时加载数据。 另一个修改后的 jqGri
我一直在为我将在此处描述的 CSS 问题而烦恼: 在下面的示例 ( https://codesandbox.io/s/jjq4km89y5 ) 中,您可以看到一个可滚动的内容(紫色背景)和一个被左侧面
我是一名优秀的程序员,十分优秀!