คุณสมบัติชวเลขการเปลี่ยนแปลงช่วยให้เราสามารถระบุคุณสมบัติการเปลี่ยนแปลง ระยะเวลาการเปลี่ยนแปลง ฟังก์ชันเวลาเปลี่ยน และระยะเวลาเปลี่ยนผ่านเป็นค่าคุณสมบัติการเปลี่ยนแปลงในบรรทัดเดียว
ต่อไปนี้เป็นรหัสสำหรับคุณสมบัติชวเลขการเปลี่ยนแปลงใน CSS -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> .container div { width: 300px; height: 100px; border-radius: 1px; background-color: rgb(25, 0, 255); border: 2px solid red; transition: border-radius 2s ease 1s, background-color 2s ease-out 1s ; } .container:hover div { background-color: purple; border-radius: 50%; } </style> </head> <body> <h1>Transition shorthand property</h1> <div class="container"> <div></div> </div> <h2>Hover over the above div to change its color and its shape to oval</h2> </body> </html>
ผลลัพธ์
รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -