Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

ดำเนินการเปลี่ยนหลายครั้งโดยใช้ CSS3


สำหรับการเปลี่ยนหลายครั้ง ให้ใช้คุณสมบัติการเปลี่ยน CSS3 ซึ่งเป็นคุณสมบัติชวเลข โดยจะตั้งค่าคุณสมบัติ ระยะเวลา เวลา และความล่าช้าของการเปลี่ยนแปลงในบรรทัดเดียว

ต่อไปนี้เป็นรหัสสำหรับดำเนินการเปลี่ยนหลายครั้งโดยใช้ CSS3 -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
.container div {
   width: 300px;
   height: 100px;
   border-radius: 1px;
   background: rgb(25, 0, 255);
   border: 2px solid red;
   transition: width 2s, border-radius 2s;
}
.container:hover div {
   width: 100px;
   border-radius: 50%;
}
</style>
</head>
<body>
<h1>Multiple transitions example</h1>
<div class="container">
<div></div>
</div>
<h2>
Hover over the above div to reduce its width and to change it into circle
</h2>
</body>
</html>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

ดำเนินการเปลี่ยนหลายครั้งโดยใช้ CSS3

ดำเนินการเปลี่ยนหลายครั้งโดยใช้ CSS3