1569215-1.html (350B)
1 <style> 2 path { 3 stroke: #000; 4 fill: none; 5 } 6 7 #pp { 8 animation: flyR 5s infinite; 9 } 10 11 @keyframes flyR { 12 from { 13 transform: translate(9px); 14 } 15 16 50% { 17 transform: translate(4.5px); 18 } 19 20 to { 21 transform: translate(0px); 22 } 23 } 24 </style> 25 26 <svg width="500" height="500" viewBox="105 125 20 20"> 27 <path id="pp" d="m 95,130 h 36" /> 28 </svg>