Heat Maps 구성 요소
3D 디자인 스타일과 보색 구성표가 있는 간단한 반응형 히트 맵 구성 요소로, 어두운 테마를 지원하는 작업이나 제품을 보여주기 위해 설계되었습니다.
HTML 코드
<div class="bg-gray-900 text-white p-6 rounded-lg shadow-lg dark:bg-gray-800">
<h2 class="text-2xl font-bold mb-4 text-center">Portfolio Heat Maps</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-blue-500 rounded-lg overflow-hidden transform transition-all duration-300 hover:scale-105 hover:shadow-xl">
<img src="https://picsum.photos/200?random=1" alt="Project 1" class="w-full h-40 object-cover" />
<div class="p-4">
<h3 class="font-semibold text-lg">Project Title 1</h3>
<p class="text-sm text-gray-200">Short description of the project.</p>
<div class="flex items-center mt-2">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Avatar" class="w-8 h-8 rounded-full mr-2" />
<span class="text-gray-300">Designer Name</span>
</div>
</div>
</div>
<div class="bg-red-500 rounded-lg overflow-hidden transform transition-all duration-300 hover:scale-105 hover:shadow-xl">
<img src="https://picsum.photos/200?random=2" alt="Project 2" class="w-full h-40 object-cover" />
<div class="p-4">
<h3 class="font-semibold text-lg">Project Title 2</h3>
<p class="text-sm text-gray-200">Short description of the project.</p>
<div class="flex items-center mt-2">
<img src="https://randomuser.me/api/portraits/women/1.jpg" alt="Avatar" class="w-8 h-8 rounded-full mr-2" />
<span class="text-gray-300">Designer Name</span>
</div>
</div>
</div>
<div class="bg-green-500 rounded-lg overflow-hidden transform transition-all duration-300 hover:scale-105 hover:shadow-xl">
<img src="https://picsum.photos/200?random=3" alt="Project 3" class="w-full h-40 object-cover" />
<div class="p-4">
<h3 class="font-semibold text-lg">Project Title 3</h3>
<p class="text-sm text-gray-200">Short description of the project.</p>
<div class="flex items-center mt-2">
<img src="https://randomuser.me/api/portraits/men/2.jpg" alt="Avatar" class="w-8 h-8 rounded-full mr-2" />
<span class="text-gray-300">Designer Name</span>
</div>
</div>
</div>
<div class="bg-yellow-500 rounded-lg overflow-hidden transform transition-all duration-300 hover:scale-105 hover:shadow-xl">
<img src="https://picsum.photos/200?random=4" alt="Project 4" class="w-full h-40 object-cover" />
<div class="p-4">
<h3 class="font-semibold text-lg">Project Title 4</h3>
<p class="text-sm text-gray-200">Short description of the project.</p>
<div class="flex items-center mt-2">
<img src="https://randomuser.me/api/portraits/women/2.jpg" alt="Avatar" class="w-8 h-8 rounded-full mr-2" />
<span class="text-gray-300">Designer Name</span>
</div>
</div>
</div>
</div>
</div>
관련 구성 요소
Heat Maps 구성 요소
레트로/빈티지 미학을 가미한 반응형 히트 맵 구성 요소로, 블로그/콘텐츠 목적으로 설계되었으며, 대화형 요소와 어두운 테마 지원을 특징으로 합니다.
Heat Maps 구성 요소
블로그/콘텐츠 소비를 위한 히트 맵 컴포넌트로, 다크 모드를 지원하는 반응형 디자인을 특징으로 합니다. 그레이스케일 색 구성표와 대화형 기능을 통해 중간 복잡성을 활용합니다. 자바스크립트 없음, Tailwind CSS가 있는 순수 HTML.