안녕하세요?? 나는 다시 정상으로 돌아왔다. #100daysofMiva 코딩 챌린지 9일차에는 Nodejs에서 간단한 색상 팔레트 생성기를 작업했습니다. 산책해 보세요...✨
확인해 보세요
https://colorpal.onrender.com
이것은 Express.js 및 chroma-js를 사용하여 Node.js로 구축된 색상 팔레트 생성기입니다. 무작위로 생성된 기본 색상의 다양한 색조를 포함하여 매번 아름다운 5색 팔레트를 생성합니다. 빠른 색상 영감을 원하는 UI/UX 디자이너에게 적합합니다! ?
git clone https://github.com/Marvellye/colorpal cd colorpal
npm install
node app.js
브라우저에서 앱을 방문하세요:
http://localhost:3000
새로운 5색 팔레트를 생성할 수 있는 인터페이스가 표시됩니다. 새로운 색상 팔레트를 가져오려면 생성 버튼을 누르세요.
특정 팔레트를 검색하려면 다음으로 이동하세요.
http://localhost:3000/palette/:id
:id를 보려는 팔레트의 ID로 바꾸세요. 예:
http://localhost:3000/palette/C08552-F3E9DC-5E3023-DAB49D
다음은 앱이 생성하는 팔레트 종류의 예입니다.
Base Color: #C08552 Palette: #F3E9DC (Light) #5E3023 (Dark) #DAB49D (Neutral)
이 색상 팔레트 생성기는 5가지 색상 팔레트를 동적으로 생성하여 UI에 표시합니다. 사용자는 생성 버튼을 클릭하여 팔레트와 상호 작용할 수 있으며, 팔레트 ID는 특정 색상 조합을 저장하고 공유하는 데 사용됩니다. 레이아웃 작동 방식은 다음과 같습니다.
<!-- Header --> <header class="p-3 text-center"> <h1>Colour Palette Generator</h1> </header>
헤더는 애플리케이션에 대한 깔끔하고 간단한 제목을 제공합니다.
<!-- Colour Boxes --> <section class="color-container"> <div id="box1" class="color-box" style="background-color: #000000;"> <span>#000000</span> </div> <div id="box2" class="color-box" style="background-color: #000000;"> <span>#000000</span> </div> <div id="box3" class="color-box" style="background-color: #000000;"> <span>#000000</span> </div> <div id="box4" class="color-box" style="background-color: #000000;"> <span class="text-white">Hey!</span> </div> <div id="box5" class="color-box" style="background-color: #000000;"> <span class="text-white"></span> </div> </section>
이 섹션에는 색상 상자가 포함되어 있습니다. 각 상자는 생성된 색상 팔레트에 따라 배경색을 동적으로 변경하는 div입니다. 각 div 내부의 범위는 색상의 16진수 값을 표시합니다.
<!-- Loader --> <section id="loader" class="loader"> <div class="is-loading"> <h3 id="load-text">Generating...</h3> </div> </section>
이 섹션에는 새 색상 팔레트가 생성될 때 나타나는 로더가 포함되어 있습니다. 색상이 로드된 후 로더가 사라집니다.
<!-- Footer --> <footer class="d-flex justify-content-between align-items-center"> <button onclick="gen()" class="btn btn-light">Generate</button> <button class="btn text-white" onclick="share(window.location.href)"> <i class="fa-regular fa-share-from-square"></i> </button> <span class="">100daysofMiva-Marvelly</span> </footer>
바닥글에는 색상 생성을 시작하는 생성 버튼과 소셜 미디어 공유를 위한 공유 버튼이 포함되어 있습니다.
const boxes = [ document.getElementById('box1'), document.getElementById('box2'), document.getElementById('box3'), document.getElementById('box4'), document.getElementById('box5') ]; function updateBoxes(colors) { colors.forEach((color, index) => { boxes[index].style.backgroundColor = color; boxes[index].querySelector('span').textContent = color; }); }
이 JavaScript 코드는 새 팔레트가 생성될 때 색상 상자의 색상을 동적으로 업데이트합니다. 색상은 UI의 각 div 요소에 적용됩니다.
async function gen() { // Show the loader loader.style.display = 'block'; try { const response = await fetch('/palette'); const data = await response.json(); // Update the boxes with the new colors updateBoxes(data.palette); // Update the URL with the new ID history.pushState({}, '', `/${data.id}`); loader.style.display = 'none'; } catch (error) { console.error('Error fetching palette:', error); loader.style.display = 'none'; } }
gen() 함수는 /palette API 경로에서 새 색상 팔레트를 가져오고, 색상 상자를 업데이트하고, 새 팔레트 ID로 브라우저 URL을 수정합니다.
function share(url) { Swal.fire({ heightAuto: false, title: 'Share this Color Palette!', html: ` <div style="display: flex; justify-content: space-around; font-size: 24px;"> <a href="https://api.whatsapp.com/send?text=${encodeURIComponent(url)}" target="_blank" title="Share on WhatsApp"> <i class="fab fa-whatsapp" style="color: #25D366;"></i> </a> <a href="https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(url)}" target="_blank" title="Share on Facebook"> <i class="fab fa-facebook" style="color: #3b5998;"></i> </a> <a href="https://twitter.com/intent/tweet?url=${encodeURIComponent(url)}" target="_blank" title="Share on Twitter"> <i class="fab fa-twitter" style="color: #1DA1F2;"></i> </a> <a href="https://www.instagram.com/?url=${encodeURIComponent(url)}" target="_blank" title="Share on Instagram"> <i class="fab fa-instagram" style="color: #E1306C;"></i> </a> </div> `, showConfirmButton: false, showCloseButton: false, }); }
share() 기능을 사용하면 사용자는 SweetAlert 팝업을 사용하여 WhatsApp, Facebook, Twitter, Instagram, Telegram과 같은 소셜 미디어 플랫폼을 통해 현재 색상 팔레트를 공유할 수 있습니다.
// Check if an id is present in the URL const currentPath = window.location.pathname; const paletteId = currentPath.substring(1); if (paletteId) { loadPaletteById(paletteId); } else { gen(); }
This functionality checks if there is a color palette ID in the URL when the page is loaded. If an ID is present, the corresponding palette is loaded. Otherwise, a new palette is generated.
Building this app wasn't without its challenges! Here are some of the problems I encountered and how I solved them:
Dull Color Palettes: Initially, I was getting dull and boring colors. The issue was due to the way I was generating shades from the base color. I switched to using hsl.l (lightness) adjustments for better visual results.
Color Palette Variants: At first, I used random colors that were too different from each other. After realizing that everyone needed variants of the same base color for consistency, I adjusted my approach to generate color scales with different lightness levels.
Invalid Palette IDs: When trying to retrieve a palette by ID, some IDs were invalid or incorrectly formatted. I fixed this by ensuring a strict format for the IDs and adding error handling for invalid IDs.
Hex Values Misplacement: At one point, the hex values were not displaying properly inside the color boxes. This was fixed by ensuring the span elements were correctly updated with the hex values.
Palette Sharing: Creating a robust sharing mechanism for various social media platforms was a bit challenging but ultimately solved using SweetAlert for the UI and share links for each platform.
Dynamic Palette Update: Implementing a smooth update of the UI when a new palette was generated was tricky. By using simple JavaScript and handling the loader display correctly, I ensured a seamless experience for users when generating new palettes.
Check it out
https://colorpal.onrender.com
My GitHub repo
https://github.com/Marvellye/colorpal
위 내용은 색상 팔레트 생성기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!