Skip to content

Instantly share code, notes, and snippets.

@tetu1225
Created October 16, 2011 06:02
Show Gist options
  • Save tetu1225/1290563 to your computer and use it in GitHub Desktop.
Save tetu1225/1290563 to your computer and use it in GitHub Desktop.
Rails Cycle ヘルパー
<table>
<tr>
<th>名前</th>
<th>性別</th>
<th>血液型</th>
</tr>
<% @people.each do |person| %>
<tr style="background-color:<%= cycle('#FFffFF', '#FFff99') %>
<td><%= person.name %></td>
<td><%= person.sex %></td>
<td><%= person.blood %></td>
</tr>
</table>
%table{:border => 1}
%tr
%th 名前
%th 性別
%th 血液型
- @people.each do |person|
%tr{:style => "background-color:#{cycle '#FFffFF', '#55ff99'}"}
%td= person.name
%td= person.sex
%td= person.blood
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment