Poker Cards

  • Sale
  • Regular price $15.87
Shipping calculated at checkout.


Elevate your poker nights with a touch of elegance using our black and gold marble vein playing cards. This luxurious deck is crafted from high-grade 300gsm paper with a UV-resistant glossy coating, ensuring durability and a premium feel. The stunning black and gold marble design on the back of each card adds a sophisticated flair, making every game feel like an event. The deck includes 52 cards and 2 jokers, all housed in a sleek white box. Whether you're playing casually or in high-stakes games, these cards resist cracking and folding, maintaining their pristine condition game after game.

Key Features:

  • Material: Durable 300gsm UV-coated glossy paper
  • Elegant black and gold marble vein design on the back
  • Deck includes 52 cards + 2 jokers
  • Comes in a sleek white box
  • One customizable back design for all cards

/** * Function to move the background of a website like reptile scales. * * @param {string} elementId - The ID of the element to apply the background movement. * @param {number} speed - The speed of the background movement. * @param {number} scale - The scale of the background movement. */ function moveBackgroundLikeReptileScales(elementId, speed, scale) { const element = document.getElementById(elementId); // Check if the element exists if (!element) { console.error(`Element with ID "${elementId}" not found.`); return; } // Set the initial background position let position = 0; // Function to move the background function moveBackground() { // Calculate the new background position position += speed; // Apply the background position element.style.backgroundPosition = `${position}px ${position}px`; // Apply the background scale element.style.transform = `scale(${scale})`; // Request the next animation frame requestAnimationFrame(moveBackground); } // Start the background movement moveBackground(); } // Usage Example // Move the background of the element with ID "background" like reptile scales moveBackgroundLikeReptileScales("background", 2, 1.2);