Để triển khai hoạt ảnh trên font-weight thuộc tính CSS, bạn có thể thử chạy đoạn mã sau
Ví dụ
<!DOCTYPE html>
<html>
<head>
<style>
p {
border: 2px solid black;
width: 400px;
height: 100px;
animation: myanim 5s infinite;
}
@keyframes myanim {
70% {
font-weight: bold;
}
}
</style>
</head>
<body>
<p>This is demo text</p>
</body>
</html>