card_thumb.svelte 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <script lang="js">
  2. import { setLeftPanelCard } from '../left_panel';
  3. import { cardImageUrl } from '../utils';
  4. let {id, area, idx, limitNum} = $props();
  5. function onhover() {
  6. setLeftPanelCard(id);
  7. }
  8. function onDragStart(e) {
  9. e.dataTransfer.setData('text', JSON.stringify({id, area, idx}))
  10. }
  11. </script>
  12. {#if id}
  13. <img
  14. style="margin:2px;"
  15. draggable="true"
  16. onmouseover={onhover}
  17. onfocus={onhover}
  18. ondragstart={onDragStart}
  19. height="100%"
  20. src={cardImageUrl(id)}
  21. alt="yugioh card {id}"
  22. />
  23. {#if limitNum === 1 || limitNum == 2}
  24. <div class="overlay">{limitNum}</div>
  25. {:else if limitNum === 0}
  26. <div class="ban-overlay"></div>
  27. {/if}
  28. {/if}
  29. <style>
  30. .overlay {
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. border: 3px solid red;
  35. border-radius: 50%;
  36. background-color: black;
  37. width: 20px;
  38. height: 20px;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. font-weight: bold;
  43. color: yellow;
  44. font-size: 15px;
  45. font-family: Arial, sans-serif;
  46. box-sizing: border-box;
  47. pointer-events: none;
  48. }
  49. .ban-overlay {
  50. position: absolute;
  51. top: 0;
  52. left: 0;
  53. border: 3px solid red;
  54. border-radius: 50%;
  55. background-color: black;
  56. width: 20px;
  57. height: 20px;
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. font-weight: bold;
  62. color: yellow;
  63. font-size: 15px;
  64. font-family: Arial, sans-serif;
  65. box-sizing: border-box;
  66. pointer-events: none;
  67. }
  68. .ban-overlay::after {
  69. content: '';
  70. width: 15px;
  71. height: 3px;
  72. background-color: red;
  73. transform: rotate(45deg);
  74. position: absolute;
  75. pointer-events: none;
  76. }
  77. </style>