svg 코드가 html이면 자바스크립트를 작성하여 그래픽 변환을 제어하는 것이 더 쉽습니다. 여기서는 svg의 사전 정의된 모양 요소를 소개하므로 관심 있는 친구들이 참고하면 좋겠습니다. 모두에게 도움이 됩니다.
d8e2720730be5ddc9c2a3782839e8eb6, 273238ce9338fbb04bee6997e5552b95 또는 d5ba1642137c3f32f4f4493ae923989c 태그를 사용하여 SVG 파일을 HTML 문서에 포함할 수 있습니다.
<embed src="rect.svg" width="300"height="100" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/"/>
pluginspage 속성은 플러그인을 다운로드할 수 있는 URL을 가리킵니다.
<object data="rect.svg"width="300" height="100" type="image/svg+xml" codebase="http://www.adobe.com/svg/viewer/install/"/> <iframe src="rect.svg" width="300"height="100"> </iframe>
세 가지 태그 중 d5ba1642137c3f32f4f4493ae923989c은 이전 태그이며 현재는 덜 사용됩니다. 가장 일반적으로 사용되는 태그는 d8e2720730be5ddc9c2a3782839e8eb6 태그입니다. 486d7a50595533609bc98d44595dc670 태그에 필수 코드를 입력하세요.
svg 코드가 html이면 자바스크립트를 작성하여 그래픽 변환을 제어하는 것이 더 쉽습니다.
<?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의 미리 정의된 모양 요소는 다음과 같습니다.
직사각형
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg" onclick="ccc();"> <ellipse cx="240" cy="100" rx="220" ry="30" style="fill:yellow"/> <ellipse cx="220" cy="100" rx="190" ry="20" id="w1" style="fill:white"/> </svg>타원
Polyline
<script type="text/javascript"> function ccc(){ var a = document.getElementById("w1"); a.style.fill="red"; a.setAttribute("cx", "150"); //设置值 a.setAttribute("ry", "50"); //设置值 } </script>Path
위 내용은 이 장의 전체 내용입니다.
Html5를 방문하세요. 동영상 튜토리얼
,
SVG 동영상 튜토리얼
!