Модуль:Анимация — различия между версиями
Материал из Hilarious Wiki
MailGik (обсуждение | вклад) (Новая страница: «local p = {} function p.animate( f ) local args = f if f == mw.getCurrentFrame() then args = f:getParent().args end local files = args[1] or '' local size…») |
Popstop (обсуждение | вклад) м (Обновление модуля) |
||
Строка 1: | Строка 1: | ||
local p = {} | local p = {} | ||
+ | local modification = ' (' .. mw.title.getCurrentTitle().rootText .. ')' | ||
function p.animate( f ) | function p.animate( f ) | ||
local args = f | local args = f | ||
Строка 17: | Строка 18: | ||
table.insert( images, '<span><br></span>' ) | table.insert( images, '<span><br></span>' ) | ||
else | else | ||
− | table.insert( images, '<span>[[Файл:' .. image .. size .. ']]</span>' ) | + | table.insert( images, '<span>[[Файл:' .. image .. modification .. size .. ']]</span>' ) |
end | end | ||
end | end |
Версия 10:27, 3 ноября 2018
Этот модуль реализует шаблон {{Анимация}}. Он (модуль) при включении в шаблонах принимает не непосредственные аргументы, а аргументы вызвавшей страницы, поэтому вызывать этот модуль в шаблонах напрямую не рекомендуется.
Расположенная выше документация включена из Модуль:Анимация/док.
local p = {}
local modification = ' (' .. mw.title.getCurrentTitle().rootText .. ')'
function p.animate( f )
local args = f
if f == mw.getCurrentFrame() then
args = f:getParent().args
end
local files = args[1] or ''
local size = args[2] or ''
if size ~= '' then
size = '|' .. size
end
local images = {}
for image in mw.text.gsplit( files, '%s*;%s*' ) do
if image == '' then
table.insert( images, '<span><br></span>' )
else
table.insert( images, '<span>[[Файл:' .. image .. modification .. size .. ']]</span>' )
end
end
images[1] = images[1]:gsub( '^<span>', '<span class="active">' )
return '<span class="animated">' .. table.concat( images ) .. '</span>'
end
return p