置顶公告:【置顶】关于临时开启评论区所有功能的公告(2022.10.22) | 【置顶】关于本站Widget恢复使用的公告
  • 你好~!欢迎来到萌娘百科镜像站!如需查看或编辑,请联系本站管理员注册账号。
  • 本镜像站和其他萌娘百科的镜像站无关,请注意分别。

Module:ColorOps

贴贴♀百科,万娘皆可贴的百科全书!转载请标注来源页面的网页链接,并声明引自贴贴百科。内容不可商用。
跳到导航 跳到搜索
Template-info.svg 模块文档  [创建] [刷新]
  1. local module = {}
  2. local getArgs = require('Module:Arguments').getArgs
  3. local Color = require('Module:color')
  4. function _main(args)
  5. local action = args[1]
  6. local arg1 = args[2]
  7. local arg2 = args[3]
  8. local arg3 = args[4]
  9. if action == 'reverse' then
  10. local color = arg1
  11. return Color.create(color):reverse():toString('hex')
  12. end
  13. if action == 'random' then
  14. local min = arg1 or 0
  15. local max = arg2 or 255
  16. return Color.random(min, max):toString('hex')
  17. end
  18. if action == 'opacity' then
  19. local color = arg1
  20. local opacity = arg2
  21. return Color.create(color):setOpacity(opacity):toString()
  22. end
  23. if action == 'isLight' then
  24. local color = arg1
  25. return Color.create(color):isLight() and 1 or ''
  26. end
  27. if action == 'isDark' then
  28. local color = arg1
  29. return Color.create(color):isDark() and 1 or ''
  30. end
  31. if action == 'mix' then
  32. local color1 = Color.create(arg1)
  33. local color2 = Color.create(arg2)
  34. local weight = arg3
  35. return color1:mix(color2, weight):rgb():toString('hex-opacity')
  36. end
  37. -- 映射要使用的每组操作颜色属性的方法
  38. local methods = {
  39. saturation = {'saturate', 'desaturate'},
  40. lightness = {'lighten', 'darken'},
  41. default = {'darken', 'lighten'} -- 历史遗留原因,默认是加深、减淡
  42. }
  43. if action:find('^test:[ls]?') then
  44. function block(text, color)
  45. return '<ruby style="color:'..color..'">■<rt style="color:black">'..text..'<rt></ruby>&nbsp;'
  46. end
  47. local property = ({
  48. s = 'saturation',
  49. l = 'lightness'
  50. })[action:sub(#action, #action)] or 'default'
  51. local usedMethods = methods[property]
  52. local color = Color.create(arg1)
  53. local left = ''
  54. local right = ''
  55. for i=1, 9 do
  56. i = i * 10
  57. local clonedColor1 = color:clone()
  58. local clonedColor2 = color:clone()
  59. left = block('-'..i, Color[usedMethods[2]](clonedColor1, i):toString())..left
  60. right = right..block('+'..i, Color[usedMethods[1]](clonedColor2, i):toString())
  61. end
  62. return '<div style="font-size:30px">'..left..block('▼', color:toString())..right..'</div>'
  63. end
  64. if action:find('^[sl]?[%+%-]') then
  65. local color = Color.create(arg1)
  66. local operateProperty = 'default'
  67. local operator = ''
  68. local ratio = 0
  69. if action:find('^[sl]') then
  70. operateProperty = ({
  71. s = 'saturation',
  72. l = 'lightness'
  73. })[action:sub(1, 1)]
  74. operator = action:sub(2, 2)
  75. ratio = tonumber(action:sub(3)) or 10
  76. else
  77. operator = action:sub(1, 1)
  78. ratio = tonumber(action:sub(2)) or 10
  79. end
  80. local usedMethods = methods[operateProperty]
  81. local usedMethod = operator == '+' and usedMethods[1] or usedMethods[2]
  82. return Color[usedMethod](color, ratio):toString('hex')
  83. end
  84. end
  85. function module.main(frame)
  86. local args = getArgs(frame)
  87. return _main(args)
  88. end
  89. return module