글꼴 에 애니메이션을 구현하려면 CSS를 사용하여 속성을 사용하여 다음 코드를 실행할 수 있습니다.
예시
<!DOCTYPE html>
<html>
<head>
<style>
p {
border: 2px solid black;
width: 400px;
height: 100px;
animation: myanim 5s infinite;
}
@keyframes myanim {
70% {
font: 35px arial, sans-serif;
}
}
</style>
</head>
<body>
<p>This is demo text</p>
</body>
</html>