본문 바로가기
html and css

[svg] 글자 번갈아가며 나오기

by 하이바네 2022. 10. 20.
반응형

아래의 코드를 실행하면 "가나다라", "마바사아"가 번갈아가며 출력된다.

 

 

가나다라 마바사아
<!DOCTYPE html>
<html>
<body>


<svg width="120" height="60">
 
  <text x="20" y="35" fill="red" visibility="visible">가나다라
    <animate attributeType="CSS" attributeName="visibility" from="visible" to="hidden" begin="0s" dur="3s"repeatCount="indefinite"/>
  </text>
  <text x="20" y="35" fill="red" visibility="hidden">마바사아
    <animate attributeType="CSS" attributeName="visibility" from="hidden" to="visible" begin="0s" dur="3s"repeatCount="indefinite"/>
  </text>
  
</svg>
 
</body>
</html>
728x90

댓글