12345678910111213141516171819202122 |
- <% for ( var i = 0; i < list.length; i++ ) { %>
- <% var cp = list[i].champion %>
- <tr class="<%= list[i].position %>">
- <td align="center" class="type1">
- <% if (i < 3) { %>
- <img src="http://img.lolbox.duowan.com/icon-herorank-top<%= i + 1 %>.jpg"/>
- <% } else { %>
- <%= i + 1 %>
- <% } %>
- </td>
- <td class="type2" valign="middle">
- <span class="hero-name">
- <img alt="Ezreal image" src="<%= cp.url_img['28x28'] %>" />
- <%= cp.display_name %>
- </span>
- </td>
- <td align="center" class="type3"><%= list[i].position_zh %></td>
- <td align="center" class="type4"><%= list[i].win_ratio / 100 %>%</td>
- <td align="center" class="type5"><%= list[i].use_ratio / 100 %>%</td>
- <td align="center" class="type6"><%= list[i].ban_ratio / 100 %>%</td>
- </tr>
- <% } %>
|