首页:修订间差异
来自jzyfate
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第37行: | 第37行: | ||
.jzy-heading{height:56px;margin:0 0 30px;border:1px solid #3a4351;border-radius:5px;display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:900} | .jzy-heading{height:56px;margin:0 0 30px;border:1px solid #3a4351;border-radius:5px;display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:900} | ||
.jzy-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px 10px;padding:0 24px} | .jzy-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px 10px;padding:0 24px} | ||
.jzy-card{min-height:138px;padding:18px 24px 18px 28px;display:flex;align-items:center;justify-content:space-between;gap:18px;background:#1b222c;border:1px solid rgba(255,255,255,.04);border-radius:15px;box-shadow:0 6px 0 #323944;color:#f4f7fb!important;text-decoration:none!important;font-size:22px;font-weight:900} | .jzy-card{min-height:138px;padding:18px 24px 18px 28px;display:flex;align-items:center;justify-content:space-between;gap:18px;background:#1b222c;border:1px solid rgba(255,255,255,.04);border-radius:15px;box-shadow:0 6px 0 #323944;color:#f4f7fb!important;text-decoration:none!important;font-size:22px;font-weight:900;transition:transform .16s ease,background .16s ease,color .16s ease} | ||
.jzy-card:hover{transform:translateY(-2px);background:#212a36;color:#7eeaff!important} | .jzy-card:hover{transform:translateY(-2px);background:#212a36;color:#7eeaff!important} | ||
.jzy-icon{width:124px;height:96px;display:flex;align-items:center;justify-content:center;flex:0 0 124px} | .jzy-icon{width:124px;height:96px;display:flex;align-items:center;justify-content:center;flex:0 0 124px} | ||
| 第45行: | 第45行: | ||
.jzy-card:nth-last-child(1):nth-child(3n+1){grid-column:2} | .jzy-card:nth-last-child(1):nth-child(3n+1){grid-column:2} | ||
@media(max-width:900px){.jzy-grid{grid-template-columns:repeat(2,1fr);padding:0}.jzy-card:nth-last-child(1):nth-child(3n+1){grid-column:auto}} | @media(max-width:900px){.jzy-grid{grid-template-columns:repeat(2,1fr);padding:0}.jzy-card:nth-last-child(1):nth-child(3n+1){grid-column:auto}} | ||
@media(max-width:560px){.jzy-tabs{gap:6px}.jzy-tab{min-width:82px;height:46px;font-size:16px}.jzy-heading{font-size:22px}.jzy-grid{grid-template-columns:1fr}.jzy-card{min-height:110px;font-size:20px}} | @media(max-width:560px){.jzy-game-info{padding:8px 12px 28px}.jzy-tabs{gap:6px}.jzy-tab{min-width:82px;height:46px;font-size:16px}.jzy-heading{font-size:22px}.jzy-grid{grid-template-columns:1fr}.jzy-card{min-height:110px;font-size:20px}.jzy-icon{width:92px;flex-basis:92px}} | ||
</style> | </style> | ||
| 第56行: | 第56行: | ||
<script> | <script> | ||
(function() { | (function() { | ||
var groups = [ | var groups = [ | ||
{id:"base", | {id:"base",tab:"基础",title:"游戏基础",items:["游戏简介","金唱片","仆从","收藏","技能","位置","属性","NPC","交易","任务","成就","Ironman","Stranded","Bingo","更新日志","教学"]}, | ||
{id:"combat",tab:"装备/战斗", title:"装备 / 战斗", | {id:"combat",tab:"装备/战斗",title:"装备 / 战斗",items:["武器","盔甲","饰品","附魔","洗练","药水","宠物","生物","猎手","辅助物品","The Catacombs","重铸石","宠物物品"]}, | ||
{id:"skills",tab:"技能", | {id:"skills",tab:"技能",title:"技能",items:["农耕","挖矿","附魔","战斗","伐木","钓鱼","驯服","酿造","地下城","木工","社交","符文锻造"]}, | ||
{id:"events",tab:"活动", | {id:"events",tab:"活动",title:"活动",items:["活动时间","夏日狂欢会","市长选举","动物园","Jerry节日","新年庆典","Fire Sale","神话仪式","钓鱼祭","矿工狂欢节","鬼怪嘉年华"]}, | ||
{id:"other", tab:"其他", | {id:"other",tab:"其他",title:"其他内容",items:["指令","家具","奖励包裹","传送卷轴","传送门","洗练石头","山峦之心","诈骗","商店","饮料","拍卖行","集市","社区商店",{label:"动物寓言 (Bestiary)",page:"动物寓言集"},"属性","符文","暗黑拍卖","麻袋","实验"]} | ||
]; | ]; | ||
| 第72行: | 第68行: | ||
var grid = document.getElementById("jzy-grid"); | var grid = document.getElementById("jzy-grid"); | ||
function | function normalize(item) { | ||
return | return typeof item === "string" ? {label:item, page:item} : item; | ||
} | } | ||
function | function pageUrl(title) { | ||
title = String(title || "").trim().replace(/\s+/g, "_"); | |||
if (window.mw && mw.util && mw.util.getUrl) { | |||
return mw.util.getUrl(title); | |||
} | |||
if (window.mw && mw.config) { | |||
var script = mw.config.get("wgScript") || "/index.php"; | |||
return script + "?title=" + encodeURIComponent(title); | |||
} | |||
return "/index.php?title=" + encodeURIComponent(title); | |||
} | } | ||
function | function iconUrl(title) { | ||
title = String(title || "").trim().replace(/\s+/g, "_"); | |||
if (window.mw && mw.util && mw.util.getUrl) { | |||
return mw.util.getUrl("Special:Redirect/file/" + title + ".png"); | |||
} | |||
return "/index.php?title=Special:Redirect/file/" + encodeURIComponent(title + ".png"); | |||
} | } | ||
function makeCard(item) { | function makeCard(item) { | ||
item = normalize(item); | item = normalize(item); | ||
var page = item.page || item.label; | |||
var a = document.createElement("a"); | var a = document.createElement("a"); | ||
a.className = "jzy-card"; | a.className = "jzy-card"; | ||
a.href = | a.href = item.url || pageUrl(page); | ||
var icon = document.createElement("span"); | var icon = document.createElement("span"); | ||
| 第100行: | 第108行: | ||
var img = document.createElement("img"); | var img = document.createElement("img"); | ||
img.alt = item.label; | img.alt = item.label; | ||
img.src = item.icon || iconUrl( | img.src = item.icon || iconUrl(page); | ||
img.onerror = function() { img.remove(); fallback.style.display = "flex"; }; | img.onerror = function() { | ||
img.remove(); | |||
fallback.style.display = "flex"; | |||
}; | |||
var name = document.createElement("span"); | var name = document.createElement("span"); | ||
| 第118行: | 第129行: | ||
heading.textContent = group.title; | heading.textContent = group.title; | ||
grid.innerHTML = ""; | grid.innerHTML = ""; | ||
group.items.forEach(function(item) { grid.appendChild(makeCard(item)); }); | group.items.forEach(function(item) { | ||
grid.appendChild(makeCard(item)); | |||
}); | |||
tabs.querySelectorAll(".jzy-tab").forEach(function(btn) { | tabs.querySelectorAll(".jzy-tab").forEach(function(btn) { | ||
btn.classList.toggle("is-active", btn.dataset.id === group.id); | btn.classList.toggle("is-active", btn.dataset.id === group.id); | ||
| 第130行: | 第143行: | ||
btn.dataset.id = group.id; | btn.dataset.id = group.id; | ||
btn.textContent = group.tab; | btn.textContent = group.tab; | ||
btn.onclick = function() { render(group.id); }; | btn.onclick = function() { | ||
render(group.id); | |||
}; | |||
tabs.appendChild(btn); | tabs.appendChild(btn); | ||
}); | }); | ||
| 第139行: | 第154行: | ||
</div> | </div> | ||
</html> | </html> | ||
<div style="border: 0; border-bottom: 3px solid #4caf50; margin: 20px 0;"></div> | <div style="border: 0; border-bottom: 3px solid #4caf50; margin: 20px 0;"></div> | ||
2026年7月16日 (四) 09:53的版本
江中缘 Wiki
海岛经营 · MMORPG · 多人社区
《我的世界》网易Java游戏版服务器官方百科
关于江中缘
江中缘是一款历经四年精心打造的《我的世界:网易Java版》海岛经营结合高版本特性的社区趣味多人 MMORPG 服务器。玩家从一座废弃已久的海岛度假庄园启程,白手起家,解锁超过 10000+ 全新物品道具,一步步打造属于自己的商业版图。
服务器融合了类似 Hypixel Skyblock 的核心内容——采集资源、提升技能、挑战首领、开拓岛屿区域,享受深度成长的乐趣。此外,服务器内置了多款自研游戏,随时与好友来一场轻松的对决或合作。
服务器特色:
| 10000+ 全新道具 |
多人联机 趣味互动 |
随机地牢 挑战宝藏 |
自研游戏 独家玩法 |
游戏资讯
游戏基础
核心玩法
海岛经营
从废弃度假庄园启程,打造商业帝国
随机地牢
挑战隐秘地牢,获取稀有装备
技能成长
采集资源提升技能,深度成长乐趣
自研游戏
多款自研游戏,与好友对决合作
内容导航
庄园系统 - 建筑、装饰、经营
物品图鉴 - 10000+种物品道具
属性系统 - 核心、战斗、采集属性
岛屿探索 - 海岛、地牢、首领
NPC角色 - 商人、任务、互动
技能系统 - 采集、制作、战斗
自研游戏 - 多款独家小游戏
快速入门
- 加入服务器 - 网易Java版,搜索「江中缘」
- 领取海岛 - 前往中心岛,与NPC对话
- 开始经营 - 布置庄园,接待旅客
- 探索冒险 - 挑战地牢,获取宝藏
热门页面
| 庄园系统 | 物品图鉴 | 属性系统 | 岛屿探索 |
Wiki 统计
| 0 页面总数 |
0 总编辑次数 |
社区
开始你的江中缘之旅
连接服务器,打造属于你的梦想海岛庄园
网易Java版 · 搜索「江中缘」
🌐 www.mcjzy.net | 💬 QQ群:744097204 | 📺 B站:江西中缘我的世界
江中缘 Wiki — 由社区维护的非官方百科全书
本站内容基于《江中缘》的我的世界游戏,与 Mojang Studios、Microsoft、网易 无关