A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
618B

  1. <div class="tabnav">
  2. <ul tabs="<%= tabsetname %>">
  3. <% tabs.forEach(function(item){ %>
  4. <li tabid="<%= item.id %>"><a href="#"><%= item.name %></a></li>
  5. <% }); %>
  6. </ul>
  7. <% tabs.forEach(function(item){ %>
  8. <div class="tab-content" fortabs="<%= tabsetname %>" tabid="<%= item.id %>">
  9. <div class="list-container">
  10. <% if(item.hasOwnProperty("tmpl")){ %>
  11. <%- include(item.tmpl) %>
  12. <% } %>
  13. </div>
  14. </div>
  15. <% }); %>
  16. </div>