Module:Sandbox/Leo768
Jump to navigation
Jump to search
local p = {}
function p.cheese ()
local result = {}
for i = 1, 255 do
table.insert(result,
'<div style="height: calc( 100% * (1 - min(1, max(var(--calculator-show) - ' .. i .. ', ' .. i .. ' - var(--calculator-show)))) ); overflow: clip;">[[File:Cheese (' .. i .. ').png]]</div>'
)
end
return table.concat(result)
end
return p