ショッピングカートコンポーネント
eコマースプラットフォーム向けに設計されたレスポンシブショッピングカートコンポーネントで、3Dデザインスタイルとパステルカラースキームが特徴です。製品リスト、数量、チェックアウトボタンなど、複数のインタラクティブ要素が装備されており、ダークテーマをサポートしています。
HTMLコード
<div class="min-h-screen bg-white dark:bg-gray-800 transition-all p-6 rounded-lg shadow-lg transform hover:scale-105 ease-in-out duration-300">
<h2 class="text-2xl font-semibold text-gray-800 dark:text-gray-100 text-center">Shopping Cart</h2>
<div class="mt-4">
<div class="space-y-4">
<div class="flex items-center justify-between p-4 bg-gray-100 dark:bg-gray-700 rounded-lg shadow-md">
<img src="https://picsum.photos/80/80" alt="Product Image" class="rounded-lg shadow-lg" />
<div class="flex-1 mx-4">
<h3 class="text-lg font-medium text-gray-900 dark:text-gray-200">Product Title</h3>
<p class="text-sm text-gray-600 dark:text-gray-300">$19.99</p>
</div>
<div class="flex items-center">
<button class="px-3 py-1 text-sm bg-blue-500 text-white rounded hover:bg-blue-600 dark:bg-blue-700 dark:hover:bg-blue-800 ease-in-out duration-200">+</button>
<span class="mx-2 text-gray-800 dark:text-gray-100">1</span>
<button class="px-3 py-1 text-sm bg-red-500 text-white rounded hover:bg-red-600 dark:bg-red-700 dark:hover:bg-red-800 ease-in-out duration-200">-</button>
</div>
</div>
<div class="flex items-center justify-between p-4 bg-gray-100 dark:bg-gray-700 rounded-lg shadow-md">
<img src="https://picsum.photos/80/80?random=1" alt="Product Image" class="rounded-lg shadow-lg" />
<div class="flex-1 mx-4">
<h3 class="text-lg font-medium text-gray-900 dark:text-gray-200">Another Product</h3>
<p class="text-sm text-gray-600 dark:text-gray-300">$29.99</p>
</div>
<div class="flex items-center">
<button class="px-3 py-1 text-sm bg-blue-500 text-white rounded hover:bg-blue-600 dark:bg-blue-700 dark:hover:bg-blue-800 ease-in-out duration-200">+</button>
<span class="mx-2 text-gray-800 dark:text-gray-100">1</span>
<button class="px-3 py-1 text-sm bg-red-500 text-white rounded hover:bg-red-600 dark:bg-red-700 dark:hover:bg-red-800 ease-in-out duration-200">-</button>
</div>
</div>
</div>
<div class="mt-6 flex justify-between items-center p-4 bg-gray-200 dark:bg-gray-700 rounded-lg shadow-lg">
<span class="text-xl font-semibold text-gray-800 dark:text-gray-100">Total</span>
<span class="text-xl font-semibold text-gray-800 dark:text-gray-100">$49.98</span>
</div>
<div class="mt-4">
<button class="w-full bg-green-500 text-white text-lg font-semibold rounded-lg py-2 hover:bg-green-600 dark:bg-green-700 dark:hover:bg-green-800 transition duration-200">
Checkout
</button>
</div>
</div>
</div>
関連コンポーネント
ショッピングカートコンポーネント
レトロ/ビンテージ デザイン、補色配色、ダーク モードのサポートを備えたシンプルでレスポンシブなショッピング カート コンポーネントで、Tailwind CSS を使用して構築されています。
ショッピングカートコンポーネント
ダークテーマをサポートするシンプルでレスポンシブなショッピングカートコンポーネントで、マテリアルデザインの原則に従ってTailwind CSSを使用してスタイル設定され、グレースケールの配色が施されています。商品画像にはpicsum.photosを使用します。