mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
77a483086f
Displays a blurred version of the thumbnail while the actual image loads Displays a progress bar showing the image load progress Animates into focus once the actual image is loaded Change-Id: I2b8bc4691c20ffb5b3f16da9a8b9d6fd1796d784 Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/146
9 lines
353 B
XML
9 lines
353 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<filter id="gaussian-blur" x="0" y="0">
|
|
<feGaussianBlur color-interpolation-filters="sRGB" stdDeviation="3" />
|
|
</filter>
|
|
</defs>
|
|
</svg> |