loading screen svg and css animation

Solutions on MaxInterview for loading screen svg and css animation by the best coders in the world

showing results for - "loading screen svg and css animation"
Arwen
13 Aug 2016
1<svg width="500px" height="500px" viewBox="0 0 500 500">
2 
3    <rect x="250" y="250" width="50" height="50" fill="#4bc0c8">
4        <animateTransform attributeName="transform" type="rotate" begin="0s" dur="10s" from="0 200 200" to="360 400 400" repeatCount="indefinite" />
5    </rect>
6     
7</svg>
8