首页:修订间差异
来自jzyfate
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第40行: | 第40行: | ||
.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} | ||
.jzy-icon img{max-width:104px;max-height:96px | .jzy-icon img{max-width:104px;max-height:96px} | ||
.jzy-fallback{display:none;width:74px;height:74px;align-items:center;justify-content:center;border-radius:14px;background:#263241;color:#76e5ff;font-size:30px;font-weight:900} | .jzy-fallback{display:none;width:74px;height:74px;align-items:center;justify-content:center;border-radius:14px;background:#263241;color:#76e5ff;font-size:30px;font-weight:900} | ||
.jzy-name{text-align:right;line-height:1.2} | .jzy-name{text-align:right;line-height:1.2} | ||
.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 | @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-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}} | ||
</style> | </style> | ||
| 第55行: | 第55行: | ||
<script> | <script> | ||
(function(){ | (function() { | ||
const groups=[ | const groups = [ | ||
{id:"base",tab:"基础",title:"游戏基础",items:["游戏简介","金唱片","仆从","收藏","技能","位置","属性","NPC","交易","任务","成就","Ironman","Stranded","Bingo","更新日志","教学"]}, | {id:"base", tab:"基础", title:"游戏基础", items:["游戏简介","金唱片","仆从","收藏","技能","位置","属性","NPC","交易","任务","成就","Ironman","Stranded","Bingo","更新日志","教学"]}, | ||
{id:"combat",tab:"装备/战斗",title:"装备 / 战斗",items:["武器","盔甲","饰品","附魔","洗练","药水","宠物","生物","猎手","辅助物品","The Catacombs","重铸石","宠物物品"]}, | {id:"combat",tab:"装备/战斗", title:"装备 / 战斗", items:["武器","盔甲","饰品","附魔","洗练","药水","宠物","生物","猎手","辅助物品","The Catacombs","重铸石","宠物物品"]}, | ||
{id:"skills",tab:"技能",title:"技能",items:["农耕","挖矿","附魔","战斗","伐木","钓鱼","驯服","酿造","地下城","木工","社交","符文锻造"]}, | {id:"skills",tab:"技能", title:"技能", items:["农耕","挖矿","附魔","战斗","伐木","钓鱼","驯服","酿造","地下城","木工","社交","符文锻造"]}, | ||
{id:"events",tab:"活动",title:"活动",items:["活动时间","夏日狂欢会","市长选举","动物园"," | {id:"events",tab:"活动", title:"活动", items:["活动时间","夏日狂欢会","市长选举","动物园","Jerry节日","新年庆典","Fire Sale","神话仪式","钓鱼祭","矿工狂欢节","鬼怪嘉年华"]}, | ||
{id:"other",tab:"其他",title:"其他内容",items:["指令","家具","奖励包裹","传送卷轴"," | {id:"other", tab:"其他", title:"其他内容", items:["指令","家具","奖励包裹","传送卷轴","传送门","洗练石头","山峦之心","诈骗","商店","饮料","拍卖行","集市","社区商店",{label:"动物寓言 (Bestiary)",page:"动物寓言集"},"属性","符文","暗黑拍卖","麻袋","实验"]} | ||
]; | ]; | ||
const tabs=document.getElementById("jzy-tabs"); | const tabs = document.getElementById("jzy-tabs"); | ||
const heading=document.getElementById("jzy-heading"); | const heading = document.getElementById("jzy-heading"); | ||
const grid=document.getElementById("jzy-grid"); | const grid = document.getElementById("jzy-grid"); | ||
function pageUrl(name){return "https://wiki.mcjzy.net/" + encodeURIComponent(String(name).trim( | function pageUrl(name) { | ||
return "https://wiki.mcjzy.net/" + encodeURIComponent(String(name).trim()); | |||
} | |||
function iconUrl(name){return "/Special:Redirect/file/" + encodeURIComponent(String(name).trim( | function iconUrl(name) { | ||
return "/Special:Redirect/file/" + encodeURIComponent(String(name).trim() + ".png"); | |||
} | |||
function normalize(item){return typeof item==="string"?{label:item,page:item}:item} | function normalize(item) { | ||
return typeof item === "string" ? {label:item, page:item} : item; | |||
} | |||
function makeCard(item){ | function makeCard(item) { | ||
item=normalize(item); | item = normalize(item); | ||
var a = document.createElement("a"); | |||
a.className="jzy-card"; | a.className = "jzy-card"; | ||
a.href=pageUrl(item.page || item.label); | a.href = pageUrl(item.page || item.label); | ||
a.target = "_blank"; | |||
var icon = document.createElement("span"); | |||
icon.className="jzy-icon"; | icon.className = "jzy-icon"; | ||
var fallback = document.createElement("span"); | |||
fallback.className="jzy-fallback"; | fallback.className = "jzy-fallback"; | ||
fallback.textContent=String(item.label).charAt(0); | fallback.textContent = String(item.label).charAt(0); | ||
var img = document.createElement("img"); | |||
img.alt=item.label; | img.alt = item.label; | ||
img.src=item.icon || iconUrl(item.page || item.label); | img.src = item.icon || iconUrl(item.page || item.label); | ||
img.onerror=function(){img.remove();fallback.style.display="flex"}; | img.onerror = function() { img.remove(); fallback.style.display = "flex"; }; | ||
var name = document.createElement("span"); | |||
name.className="jzy-name"; | name.className = "jzy-name"; | ||
name.textContent=item.label; | name.textContent = item.label; | ||
icon.appendChild(fallback); | icon.appendChild(fallback); | ||
| 第103行: | 第110行: | ||
} | } | ||
function render(id){ | function render(id) { | ||
var group = groups.find(function(g) { return g.id === id; }) || groups[0]; | |||
heading.textContent=group.title; | heading.textContent = group.title; | ||
grid.innerHTML=""; | grid.innerHTML = ""; | ||
group.items.forEach(item | group.items.forEach(function(item) { grid.appendChild(makeCard(item)); }); | ||
tabs.querySelectorAll(".jzy-tab").forEach(function(btn) { | |||
tabs.querySelectorAll(".jzy-tab").forEach(btn | btn.classList.toggle("is-active", btn.dataset.id === group.id); | ||
btn.classList.toggle("is-active",btn.dataset.id===group.id); | |||
}); | }); | ||
} | } | ||
groups.forEach(group | groups.forEach(function(group) { | ||
var btn = document.createElement("button"); | |||
btn.type="button"; | btn.type = "button"; | ||
btn.className="jzy-tab"; | btn.className = "jzy-tab"; | ||
btn.dataset.id=group. | 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); | ||
}); | }); | ||
| 第126行: | 第132行: | ||
render("base"); | render("base"); | ||
})(); | })(); | ||
</ | </script> | ||
</div> | </div> | ||
</html> | </html> | ||
2026年7月16日 (四) 09:40的版本
江中缘 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、网易 无关