프로젝트 - 임의 색상 생성기
먼저 가능한 문자 배열로 변수를 생성하여 시작할 수 있습니다. 이 배열은 CSS에서 사용할 HEX 색상 코드를 생성하는 데 사용됩니다.
// Initialize Random HEX Color Code
const hexColorCode = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f" ];
CSS를 조작하기 위해 변경하려는 다른 요소를 선택해야 합니다. 창 개체를 사용하여 각 요소의 ID를 전달하여 다른 요소를 선택할 수 있습니다.
// Initialize All Required DOM Elements
const mainSection = document.getElementById("mainSection");
const pickColor = document.getElementById("pickColor");
const pickButton = document.getElementById("pickButton");
// const copyButton = document.getElementById("copyButton");
색상에 대한 HEX 값을 구성하기 위해 for 루프를 사용하여 6개의 문자가 선택될 때까지 선택을 무작위로 지정하는 hexColorCode 배열을 순환할 수 있습니다.
// Initialize the Random HEX Color Picker
pickButton.addEventListener("click", () => {
let hexColorName = "#";
for (let i = 0; i < 6; i++) {
hexColorName += hexColorCode[getRandomArray()];
}
pickColor.style.color = hexColorName;
pickColor.textContent = hexColorName;
mainSection.style.backgroundColor = hexColorName;
});
const getRandomArray = () => {
return Math.floor(Math.random() * hexColorCode.length);
};
버튼을 반복해서 누르면 배열에서 새로운 HEX 색상 코드가 생성되고 이를 페이지의 요소에 적용하여 CSS 색상을 변경합니다.
전체 코드
// Initialize Random HEX Color Code
const hexColorCode = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f" ];
// Initialize All Required DOM Elements
const mainSection = document.getElementById("mainSection");
const pickColor = document.getElementById("pickColor");
const pickButton = document.getElementById("pickButton");
// const copyButton = document.getElementById("copyButton");
// Initialize the Random HEX Color Picker
pickButton.addEventListener("click", () => {
let hexColorName = "#";
for (let i = 0; i < 6; i++) {
hexColorName += hexColorCode[getRandomArray()];
}
pickColor.style.color = hexColorName;
pickColor.textContent = hexColorName;
mainSection.style.backgroundColor = hexColorName;
});
const getRandomArray = () => {
return Math.floor(Math.random() * hexColorCode.length);
};
Reference
이 문제에 관하여(프로젝트 - 임의 색상 생성기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/grahamfleming/project-random-color-generator-5hl0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)