- [007] d3.ZoomTransform2022년 06월 30일
- 루루개발자
- 작성자
- 2022.06.30.:03
반응형d3.ZoomTransform
d3.ZoomTransform 는 생성자의 인자로 translateX, translateY, scale 이렇게 3개 값을 받아 객체를 반환하는 클래스 입니다.
예제
다음과 같이 typescript 코드를 작성합니다. (js 로의 빌드는 esbuild 등으로 진행 하신 후, 브라우저에서 script 태그로 불러오시면 됩니다.)
import * as d3 from 'd3'; // https://github.com/d3/d3-zoom#ZoomTransform_ window.addEventListener('load', function() { const w = 400; const h = 400; const canvas = document.createElement('canvas'); const context = canvas.getContext('2d'); canvas.width = w; canvas.height = h; const transform = new d3.ZoomTransform(0.8, 100, 100); // k, x, y console.log('transform', transform); console.log('transform.toString()', transform.toString()); const boxElement = document.querySelector<HTMLElement>('.box'); if (boxElement !== null) { boxElement.style.transform = "translate(" + transform.x + "px," + transform.y + "px) scale(" + transform.k + ")"; } if (context !== null) { context.font = '12px serif'; context.fillText('테스트 입니다.', 200, 200); context.fillStyle = '#000'; } document.querySelector<HTMLElement>('.box')?.appendChild(canvas); });
결과는 다음과 같습니다.
ZoomTransform 객체의 값들을 이용해 translate 와 scale 을 지정해주니 그대로 적용된 것을 확인할 수 있습니다.
반응형'Node.js & Javascript & Typescript > d3.js' 카테고리의 다른 글
[009] d3.arc (0) 2022.07.12 [008] d3.active (0) 2022.07.08 [006] d3.Voronoi (0) 2022.06.29 [005] d3.InternSet (0) 2022.06.28 [004] d3.InternMap (0) 2022.06.27 다음글이전글이전 글이 없습니다.댓글
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)