I am using this code for image transition.I need to add 4 more images. But I cannot find it. How to add more images in this image transition using svg filters? Also how to control transition speed? It make the home page transition easier.so i am looking to add 4 more images.
<DOCTYPE! html>
<html>
<head>
<meta charset="utf-8" />
<meta name="robots" content="index, follow">
<meta name="keywords" content="">
<meta name="description" content=""/>
<title>AC</title>
</head>
<body>
<svg width="1600px" height="800px">
<defs>
<filter id="turbulent-dissolve" x="0%" y="0%">
<feTurbulence type="fractalNoise" baseFrequency=".012"/>
<feColorMatrix type="luminanceToAlpha"/>
<feComponentTransfer>
<feFuncA type="linear" slope="0">
<animate attributeName="slope" values="0;0;0;0;0;0.5;1;1.5;2;2;2;2;2;2;1.5;1;0.5;0" dur="8s" repeatCount="indefinite"/>
</feFuncA>
</feComponentTransfer>
<feComponentTransfer>
<feFuncA type="discrete" tableValues="0 1"/>
</feComponentTransfer>
<feGaussianBlur stdDeviation="1"/>
<feComposite operator="in" in="SourceGraphic" result="overlay"/>
<feImage xlink:href="https://ykob.github.io/glsl-dissolve/img/osaka02.jpg" width="800" height="600" result="underlay"/>
<feComposite operator="over" in="overlay" in2="underlay"/>
</filter>
</defs>
<image filter="url(#turbulent-dissolve)" width="800" height="600" xlink:href="https://ykob.github.io/glsl-dissolve/img/osaka01.jpg"/>
</svg>
</body>
</html>
How to add more images in this image transition using svg filters?