ในการใช้งานแอนิเมชั่นกับคุณสมบัติสีเค้าร่างด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้ -
ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 550px;
height: 350px;
outline: 2px solid blue;
animation: myanim 3s infinite;
}
@keyframes myanim {
50% {
outline-color: orange;
}
}
</style>
</head>
<body>
<h1>CSS outline-color property</h1>
<div> </div>
</body>
</html>