Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. // ヘッダの定義
  2. var headerDefine =
  3. [
  4. { text: "Job", width: "2em", align: "center" },
  5. { text: "Name", width: "9em", align: "center" },
  6. { text: "DPS", width: "4em", align: "center" },
  7. //{ text: "DMG", width: "3.3em", align: "right" },
  8. //{ text: "", width: "3em", align: "left" },
  9. { text: "Crit", width: "2.5em", align: "center" },
  10. { text: "DH %", width: "5%", align: "center" },
  11. //{ text: "Miss", width: "2.5em", align: "center" },
  12. { text: "Best Hit", width: "7.5em", align: "center" }
  13. ];
  14.  
  15. // 表示するデータの定義
  16. var bodyDefine =
  17. [
  18. { html: "<img src='./images/glow/{JobOrName}.png' onerror='$(this).attr(\"src\", \"./images/error.png\");' style='width=60%;height:60%;' />", align: "center", effect: jobColorEffect },
  19. { text: "{name}", width: "", align: "center",effect: myCharacterEffect },
  20. { text: "{encdps}", width: "", align: "center" },
  21. //{ text: "{damage}", width: "", align: "right" },
  22. //{ text: "({damage%})", width: "", align: "left" },
  23. { text: "{crithit%}", width: "", align: "center" },
  24. { text: "{DirectHitPct}", width: "", align: "center" },
  25. //{ text: "{misses}", width: "", align: "center", effect: redTextEffect },
  26. { text: "{maxhit}", width: "", align: "center", }
  27. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement