配队模拟器:修订间差异
来自卡厄思梦境WIKI
小无编辑摘要 |
无编辑摘要 |
||
| 第17行: | 第17行: | ||
<!-- 中部卡牌区 --> | <!-- 中部卡牌区 --> | ||
<div style="flex: 1; display: flex; flex-direction: column; gap: 15px;"> | <div style="flex: 1; display: flex; flex-direction: column; gap: 15px;"> | ||
<div id="deck-area" style="min-height: | <div id="deck-area" class="deck-area" style="min-height: 500px; background: #3a3a3a; border-radius: 4px; padding: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative;"> | ||
<div id="deck-cards" style="display: | <span style="color: #888; font-size: 48px;">+</span> | ||
<div id="deck-cards" style="display: none; flex-wrap: wrap; gap: 10px; width: 100%;"></div> | |||
</div> | </div> | ||
</div> | </div> | ||
| 第41行: | 第40行: | ||
<!-- 选择战斗员模态框 --> | <!-- 选择战斗员模态框 --> | ||
<div id="character-modal" class="tb-modal" style="display: none;"> | <div id="character-modal" class="tb-modal" style="display: none;"> | ||
<div class="tb-modal-content" style="max-width: 90vw; max-height: 90vh; overflow: auto; background: #2a2a2a; padding: 20px; border-radius: 8px;"> | <div class="tb-modal-content" style="max-width: 90vw; max-height: 90vh; overflow: auto; background: #2a2a2a; padding: 20px; border-radius: 8px; position: relative;"> | ||
<div class="tb-modal-close" style="position: | <div class="tb-modal-close" style="position: absolute; top: 10px; right: 20px; cursor: pointer; font-size: 32px; color: white; z-index: 1001;">×</div> | ||
<h3 style="color: white; margin-bottom: 20px;">选择战斗员</h3> | <h3 style="color: white; margin-bottom: 20px;">选择战斗员</h3> | ||
<div id="character-list"> | <div id="character-list"> | ||
| 第65行: | 第64行: | ||
<!-- 选择伙伴模态框 --> | <!-- 选择伙伴模态框 --> | ||
<div id="partner-modal" class="tb-modal" style="display: none;"> | <div id="partner-modal" class="tb-modal" style="display: none;"> | ||
<div class="tb-modal-content" style="max-width: 90vw; max-height: 90vh; overflow: auto; background: #2a2a2a; padding: 20px; border-radius: 8px;"> | <div class="tb-modal-content" style="max-width: 90vw; max-height: 90vh; overflow: auto; background: #2a2a2a; padding: 20px; border-radius: 8px; position: relative;"> | ||
<div class="tb-modal-close" style="position: | <div class="tb-modal-close" style="position: absolute; top: 10px; right: 20px; cursor: pointer; font-size: 32px; color: white; z-index: 1001;">×</div> | ||
<h3 style="color: white; margin-bottom: 20px;">选择伙伴</h3> | <h3 style="color: white; margin-bottom: 20px;">选择伙伴</h3> | ||
<div id="partner-list"> | <div id="partner-list"> | ||
| 第85行: | 第84行: | ||
}} | }} | ||
</div> | </div> | ||
</div> | |||
</div> | |||
<!-- 选择卡牌模态框 --> | |||
<div id="card-modal" class="tb-modal" style="display: none;"> | |||
<div class="tb-modal-content" style="max-width: 90vw; max-height: 90vh; overflow: auto; background: #2a2a2a; padding: 20px; border-radius: 8px; position: relative;"> | |||
<div class="tb-modal-close" style="position: absolute; top: 10px; right: 20px; cursor: pointer; font-size: 32px; color: white; z-index: 1001;">×</div> | |||
<h3 style="color: white; margin-bottom: 20px;">选择卡牌</h3> | |||
<div id="available-cards-list" style="display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;"></div> | |||
</div> | </div> | ||
</div> | </div> | ||
| 第90行: | 第98行: | ||
<!-- 选择装备模态框 --> | <!-- 选择装备模态框 --> | ||
<div id="equipment-modal" class="tb-modal" style="display: none;"> | <div id="equipment-modal" class="tb-modal" style="display: none;"> | ||
<div class="tb-modal-content" style="max-width: 90vw; max-height: 90vh; overflow: auto; background: #2a2a2a; padding: 20px; border-radius: 8px;"> | <div class="tb-modal-content" style="max-width: 90vw; max-height: 90vh; overflow: auto; background: #2a2a2a; padding: 20px; border-radius: 8px; position: relative;"> | ||
<div class="tb-modal-close" style="position: | <div class="tb-modal-close" style="position: absolute; top: 10px; right: 20px; cursor: pointer; font-size: 32px; color: white; z-index: 1001;">×</div> | ||
<h3 id="equipment-modal-title" style="color: white; margin-bottom: 20px;">选择装备</h3> | <h3 id="equipment-modal-title" style="color: white; margin-bottom: 20px;">选择装备</h3> | ||
<div id="equipment-list"></div> | <div id="equipment-list" style="display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;"></div> | ||
</div> | </div> | ||
</div> | </div> | ||
2025年10月18日 (六) 18:50的版本
+
+
+
+
+
+
