SVG는 Scalable Vector Graphics의 약자이며 XML로 2D 그래픽 및 그래픽 응용 프로그램을 설명하는 언어이며 XML은 SVG 뷰어에 의해 렌더링됩니다. 대부분의 웹 브라우저는 PNG, GIF 및 JPG를 표시할 수 있는 것처럼 SVG를 표시할 수 있습니다.
HTML5에서 SVG를 사용하여 원, 직사각형, 선 등의 모양을 쉽게 그릴 수 있습니다. SVG 로고를 그리는 예를 살펴보겠습니다. 이를 위해 선형 그래디언트를 생성합니다.
예시
다음 코드를 실행하여 SVG 로고를 그릴 수 있습니다. −
<!DOCTYPE html> <html> <head> <title>HTML5 SVG logo</title> </head> <body> <svg height="170" width="400"> <defs> <linearGradient id="lgrad" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" style="stop-color:rgb(184,78,43);stop-opacity:1" /> <stop offset="50%" style="stop-color:rgb(241,241,241);stop-opacity:1" /> <stop offset="100%" style="stop-color:rgb(255,141,52);stop-opacity:1" /> </linearGradient> </defs> <ellipse cx="100" cy="70" rx="85" ry="55" fill="url(#lgrad)" /> <text fill="#rgb(141,218,255)" font-size="40" font-family="Verdana" x="50" y="86">logo</text> </svg> </body> </html>
출력