templates/ContentBlock/preloaders/dots.html.twig line 1

Open in your IDE?
  1. {% set main_color = '#bbbbbb' %}
  2. <svg version="1.1" id="L4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  3.      viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve" style="width: 100px; height: 100px; margin: 10px;">
  4.   <circle fill="{{ main_color }}" stroke="none" cx="6" cy="50" r="6">
  5.       <animate
  6.               attributeName="opacity"
  7.               dur="1s"
  8.               values="0;1;0"
  9.               repeatCount="indefinite"
  10.               begin="0.1"/>
  11.   </circle>
  12.     <circle fill="{{ main_color }}" stroke="none" cx="26" cy="50" r="6">
  13.         <animate
  14.                 attributeName="opacity"
  15.                 dur="1s"
  16.                 values="0;1;0"
  17.                 repeatCount="indefinite"
  18.                 begin="0.2"/>
  19.     </circle>
  20.     <circle fill="{{ main_color }}" stroke="none" cx="46" cy="50" r="6">
  21.         <animate
  22.                 attributeName="opacity"
  23.                 dur="1s"
  24.                 values="0;1;0"
  25.                 repeatCount="indefinite"
  26.                 begin="0.3"/>
  27.     </circle>
  28. </svg>