translate( 横方向の移動量 , 縦方向の移動量 )
scale( 拡大率 )
scale( 横方向の拡大率 , 縦方向の拡大率 )
rotate( 回転角度 , 中心の横位置 , 中心の縦位置 )
skewX( 横方向に変形する角度 )
skewY( 縦方向に変形する角度 )
matrix( 値1 値2 値3 値4 横位置 縦位置 )
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※SVGのサンプル <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="300px" height="300px" xmlns="http://www.w3.org/2000/svg"> <g fill="red" stroke="blue" stroke-width="2px"> <rect x="150px" y="20px" width="150px" height="75px" opacity="0.5" /> <rect x="150px" y="20px" width="150px" height="75px" opacity="0.5" transform="translate(20,10) scale(0.9) rotate(20,0,0)" /> <rect x="150px" y="20px" width="150px" height="75px" opacity="0.5" transform="translate(40,20) scale(0.8) rotate(40,0,0)" /> <rect x="150px" y="20px" width="150px" height="75px" opacity="0.5" transform="translate(60,30) scale(0.7) rotate(60,0,0)" /> <rect x="150px" y="20px" width="150px" height="75px" opacity="0.5" transform="translate(80,40) scale(0.6) rotate(80,0,0)" /> </g> </svg>
<< 前へ | 次へ >> |