CSS ทำซ้ำ-conic-gradient ()ฟังก์ชั่น
ตัวอย่าง
การไล่ระดับรูปกรวยซ้ำ:
#grad {
background-image: repeating-conic-gradient(red 10%,
yellow 20%);
}
ตัวอย่าง "ลองใช้เอง" เพิ่มเติมด้านล่าง
ความหมายและการใช้งาน
ฟังก์ชัน repeating-conic-gradient() ใช้เพื่อทำซ้ำการไล่ระดับสีรูปกรวย
รุ่น: | CSS3 |
---|
รองรับเบราว์เซอร์
ตัวเลขในตารางระบุเบราว์เซอร์รุ่นแรกที่รองรับฟังก์ชันนี้อย่างเต็มที่
Function | |||||
---|---|---|---|---|---|
repeating-conic-gradient() | 69.0 | 79.0 | 83.0 | 12.1 | 56.0 |
ไวยากรณ์ CSS
background-image: repeating-conic-gradient([from angle] [at position,] color degree, color degree, ...);
Value | Description |
---|---|
from angle | Optional. The entire conic gradient is rotated by this angle. Default value is 0deg |
at position | Optional. Specifies the gradient center of the conic gradient. Default value is center |
color degree, ..., color degree | Color stops are the colors you want to render smooth transitions among. This value consists of a color value, followed by an optional stop position (a degree between 0 and 360 or a percent between 0% and 100%). |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
การไล่ระดับรูปกรวยซ้ำๆ พร้อมกำหนดสีเริ่มต้นและหยุดสี:
#grad {
background-image: repeating-conic-gradient(red 0deg 30deg,
yellow 30deg 60deg, blue 60deg 90deg);
}
หน้าที่เกี่ยวข้อง
กวดวิชา CSS: CSS การไล่ระดับสี