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

จะย้ายองค์ประกอบในเส้นทางวงกลมด้วย CSS offset-path (เส้นทางการเคลื่อนไหว) ได้อย่างไร


เราสามารถกำหนดเส้นทางการเคลื่อนที่สำหรับองค์ประกอบโดยใช้ CSS offset-path ทรัพย์สิน

ไวยากรณ์ของคุณสมบัติ CSS offset-path มีดังนี้ -

ไวยากรณ์

Selector {
   offset-path: /*value*/
}

ตัวอย่างต่อไปนี้แสดงคุณสมบัติ CSS offset-path

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
div {
   margin: 5%;
   width: 35px;
   height: 35px;
   offset-path: path('M70,0 A70,70 0 1,1 70,140 A70,70 0 1,1 70,0');
   animation: round 3000ms infinite ease-in-out;
   background: darkseagreen;
   border-radius: 30%;
}
@keyframes round {
   0% {
      offset-distance: 0%;
   }
   100% {
      offset-distance: 100%;
   }
}
</style>
</head>
<body>
<hr/>
<div></div>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้ -

จะย้ายองค์ประกอบในเส้นทางวงกลมด้วย CSS offset-path (เส้นทางการเคลื่อนไหว) ได้อย่างไร