Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<title>Animating the "rotate" property on an SVG element</title>
<style>
svg {
width: 400px;
height: 400px;
}
rect {
width: 100px;
height: 100px;
transform-origin: 100px 100px;
rotate: 180deg;
}
</style>
</head>
<body>
<svg><rect></rect></svg>
</body>
</html>