svg矩形圍繞自身中心旋轉效果

螞蟻小編發表於2017-02-01
分享一段程式碼例項,它利用svg實現了矩形圍繞自身中心旋轉效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  margin: 0px;
  padding: 0px;
}
svg {
  border:1px solid blue;
  margin:100px;
}
</style>
</head>
<body>
<svg width="500" height="250" >
  <rect
        x="50" y="50"
        width="50" height="50"
        fill="red">
    <animateTransform
                      attributeName="transform"
                      attributeType="XML"
                      type="rotate"
                      from="0 75 75"
                      to="360 75 75"
                      dur="2"
                      repeatCount="indefinite" />
  </rect>
</svg>          
</body>
</html>

相關文章