หากต้องการกำหนดความเร็วของโฮเวอร์ ให้ใช้คุณสมบัติระยะเวลาการเปลี่ยนภาพ ในการตั้งค่าโฮเวอร์ ให้ใช้ :hover ตัวเลือก
ตัวอย่าง
คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อเพิ่มความเร็วของเอฟเฟกต์โฮเวอร์ -
<!DOCTYPE html>
<html>
<head>
<style>
.btn {
background-color: yellow;
color: black;
text-align: center;
font-size: 15px;
padding: 20px;
border-radius: 15px;
border: 3px dashed blue;
transition-duration: 2s;
}
.btn:hover {
background-color: orange;
color: black;
border: 3px solid blue;
}
</style>
</head>
<body>
<h2>Result</h2>
<p>Click below for result:</p>
<button class = "btn">Result</button>
</body>
</html>