แบบสำรวจการวิจัย: บอกให้เราทราบเกี่ยวกับประสบการณ์การใช้งาน Blockly
เริ่มแบบสำรวจ
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
blockly > utils > colour > hexToRgb
ฟังก์ชัน utils.colour.hexToRgb()
แปลงสีเป็น RGB
ลายเซ็น:
export declare function hexToRgb(colour: string): number[];
พารามิเตอร์
พารามิเตอร์ |
ประเภท |
คำอธิบาย |
สี |
สตริง |
สตริงที่แสดงสีในรูปแบบสีต่างๆ ("#ff0000", "สีแดง", "0xff000" ฯลฯ) |
การคืนสินค้า:
number[]
การแสดงสีแบบ RGB
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2024-09-12 UTC
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2024-09-12 UTC"],[[["The `utils.colour.hexToRgb()` function converts a color represented in any format (hex, name, etc.) to its RGB representation."],["It takes a single string argument representing the color and returns an array of three numbers representing the red, green, and blue values."]]],["The `hexToRgb` function, part of the `utils.colour` namespace, converts a color string into its RGB representation. It accepts a single parameter, `colour`, which is a string that can represent a color in various formats like '#ff0000', 'red', or '0xff000'. The function then returns an array of numbers, representing the RGB values of the provided color.\n"]]