svg 의 텍스트에 링크걸기
html)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, height=device-height, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0"> <title>Insert title here</title> </head> <body> <?xml version="1.0" ?> <svg xmlns="http://www.w3.org/2000/svg" width="300px" height="400px" version="1.1"> <!-- a : 외부링크 연결하기 xlink:href=사이트주소 target="_blank" : 새창에서 열기 --> <a xlink:href="http://www.naver.com" target="_blank"> <text x="50" y="50" font-size="30px" font-weight="bold" style="fill:green;"> NAVER </text> </a> <a xlink:href="http://www.google.com" target="_blank"> <text x="50" y="100" font-size="30px" font-weight="bold" style="fill:blue;"> GOOGLE </text> </a> </svg> </body> </html> | cs |
결과
'IT > - 프로그래밍' 카테고리의 다른 글
안드로이드 Api로 SMS 보내기 (1) | 2017.07.28 |
---|---|
안드로이드 Intent로 SMS, MMS, Mail 보내기 (1) | 2017.07.27 |
HTML5/CSS3 svg 의 path 따라서 텍스트 나타내기 (0) | 2017.07.25 |
HTML5/CSS3 svg의 defs 요소 : 참조를 위한 컨테이너 (0) | 2017.07.24 |
HTML5/CSS3 svg 로 글자쓰기 (0) | 2017.07.22 |