跳转到内容
开关侧边栏
搜索
创建账号
个人工具
创建账号
登录
导航
首页
最近更改
随机页面
玩法条目
界面
机制
旅程
Rating
解歌系统
版本更新日志
列表条目
定数表
曲目列表
曲包列表
曲师列表
谱师列表
画师列表
徽章列表
友情链接
Arcaea中文维基
工具
链入页面
相关更改
特殊页面
页面信息
查看“Module:Color”的源代码
模块
讨论
English
阅读
查看源代码
查看历史
更多
阅读
查看源代码
查看历史
←
Module:Color
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
local p = {} local getArgs = require('Module:Arguments').getArgs local list = { ["难度I"] = 'lvl_i', ["难度1"] = 'lvl_i', ["难度Ⅰ"] = 'lvl_i', ["难度II"] = 'lvl_ii', ["难度2"] = 'lvl_ii', ["难度Ⅱ"] = 'lvl_ii', ["难度III"] = 'lvl_iii', ["难度3"] = 'lvl_iii', ["难度Ⅲ"] = 'lvl_iii', ["难度IV"] = 'lvl_iv', ["难度4"] = 'lvl_iv', ["难度Ⅳ"] = 'lvl_iv', ["TAP"] = 'note tap', ["FLICK"] = 'note flick', ["CATCH"] = 'note catch', ["SLIDE"] = 'note slide', ["ROTATE"] = function(span) span:addClass('note rotate') :tag('span'):addClass('rot'):wikitext('ROT'):done() :tag('span'):addClass('ate'):wikitext('ATE'):done() end, ["BOMB"] = 'note bomb', } -- Start -- local function makeInvokeFunc(funcName) return function(frame) local args = getArgs(frame) return p[funcName](args) end end p.main = makeInvokeFunc('_main') function p._main(args)-- 生成HTML的主函数 部分代码来源:[[Module:Songtable]] --- 构建HTML --- local span = mw.html.create("span"); local a = list[args[1]]; local b = args[2]; if type(a) == 'nil' or type(b) == 'string' then span:css('color',(args[1] or 'unset')):wikitext(b); elseif type(a) == 'string' then span:addClass(a):wikitext(args[1]); elseif type(a) == 'function' then a(span); end if args['style'] then span:attr('style',args['style']) end return tostring(span) end return p
本页使用的模板:
Module:Color/doc
(
查看源代码
)
返回
Module:Color
。