39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace ShortPixel;
 | 
						|
 | 
						|
if ( ! defined( 'ABSPATH' ) ) {
 | 
						|
 exit; // Exit if accessed directly.
 | 
						|
}
 | 
						|
?>
 | 
						|
 | 
						|
<svg version="1.1" class="svg-loader" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
 | 
						|
  viewBox="0 0 100 50" enable-background="new 0 0 0 0" xml:space="preserve">
 | 
						|
  <circle fill="#1cbecb" stroke="none" cx="6" cy="25" r="6">
 | 
						|
    <animateTransform
 | 
						|
       attributeName="transform"
 | 
						|
       dur="1s"
 | 
						|
       type="translate"
 | 
						|
       values="0 15 ; 0 -15; 0 15"
 | 
						|
       repeatCount="indefinite"
 | 
						|
       begin="0.1"/>
 | 
						|
  </circle>
 | 
						|
  <circle fill="#1cbecb" stroke="none" cx="30" cy="27" r="6">
 | 
						|
    <animateTransform
 | 
						|
       attributeName="transform"
 | 
						|
       dur="1s"
 | 
						|
       type="translate"
 | 
						|
       values="0 10 ; 0 -10; 0 10"
 | 
						|
       repeatCount="indefinite"
 | 
						|
       begin="0.2"/>
 | 
						|
  </circle>
 | 
						|
  <circle fill="#1cbecb" stroke="none" cx="54" cy="29" r="6">
 | 
						|
    <animateTransform
 | 
						|
       attributeName="transform"
 | 
						|
       dur="1s"
 | 
						|
       type="translate"
 | 
						|
       values="0 5 ; 0 -5; 0 5"
 | 
						|
       repeatCount="indefinite"
 | 
						|
       begin="0.3"/>
 | 
						|
  </circle>
 | 
						|
</svg>
 |