반응형
Object의 모양 및 위치를 동시에 조정해야 할 경우 활용할 수 있습니다.
모양 및 위치 변경 후 그 상태 그대로 유지하도록 구현한 코드입니다.
<svg viewBox="0 0 300 200">
<g>
<ellipse cx="110" cy="100" rx="100" ry="80">
<animateTransform attributeName="transform"
type="scale"
from="1 1"
to="0.5 0.5"
begin="1s"
dur="5s"
repeatCount="1"
fill="freeze"
restart="always"/>
</ellipse>
<animateTransform attributeName="transform"
type="translate"
from="0 0"
to="150 50"
begin="1s"
dur="5s"
repeatCount="1"
fill="freeze"
restart="always"/>
</g>
</svg>
결과는 다음과 같습니다.
왼쪽에서 오른쪽으로 이동하면서 크기는 줄어드는 타원입니다.
반응형
'프로그래밍 & IT 정보 > Etc.' 카테고리의 다른 글
React Redux 효율적인 공부 방법 (0) | 2022.02.27 |
---|---|
리액트(React) 완성도 높은 초보 온라인 무료 강의 추천 (0) | 2022.02.24 |
인공지능, 머신러닝, 딥러닝 다 같은 말 아닌가요? 간단한 개념 설명 (1) | 2022.01.17 |
[Ionic4] ion-select customizing(커스터마이징) 방법 (0) | 2020.07.04 |
[Ionic4] Scroll Event를 활용한 데이터 추가 로딩 방법 (0) | 2020.07.03 |
[Ionic4] Android MainActivity.java 변경 필요 시 적용 방법 (0) | 2020.07.03 |
[Firebase/Angular] Cloud Firestore Pagination Query Example (0) | 2020.07.03 |
[Firebase/Angular] Cloud Firestore Transaction Example (0) | 2020.07.03 |
댓글