Module:Sandbox/Leo768

Jump to navigation Jump to search
Documentation[create] [refresh]
This module has no documentation. If you know how to use this module, please create it.
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