<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Interactive Playing Cards</title>
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap" rel="stylesheet">
<link href="https://assets.codepen.io/2509128/style.css" rel="stylesheet">
<style>
*, *::before, *::after {
font-family: inherit;
box-sizing: inherit;
margin: 0;
padding: 0;
}
html {
box-sizing: border-box;
font-family: 'Nunito Sans', sans-serif;
font-size: 62.5%;
}
html body {
font-size: 1.6rem;
margin: 0;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
ul {
list-style: none;
}
a, a:link, a:visited {
text-decoration: none;
}
</style><link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<ul class="hands">
<!-- feel free to add or remove li -->
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<!-- partial -->
</body>
</html>
body {
background-image: linear-gradient(160deg, #777, #222);
}
@-webkit-keyframes hover {
to {
translate: 0px 12px;
}
}
@keyframes hover {
to {
translate: 0px 12px;
}
}
.hands {
--cards: 9;
--curvature: 70deg;
counter-reset: cards;
position: absolute;
bottom: 0;
width: 100%;
display: flex;
justify-content: center;
transform: translateY(20vmin);
transform-style: preserve-3d;
}
.hands > * {
--hue: calc(360deg / var(--cards) * var(--index));
--curve: calc(var(--curvature) * ((var(--index) - (var(--cards) - 1) / 2) / var(--cards)));
position: absolute;
counter-increment: cards;
flex: 0 0 auto;
width: 15vw;
max-width: 20vh;
aspect-ratio: 2/3;
transform-origin: 50% 100%;
transform: rotate(var(--curve)) translateY(-230%);
transition: all 0.3s;
position: absolute;
cursor: pointer;
font-size: 11vmin;
transform-style: preserve-3d;
}
.hands > *::before {
content: counter(cards);
display: flex;
align-items: center;
justify-content: center;
position: absolute;
color: hsl(var(--hue), 50%, 30%);
font-weight: bold;
width: 100%;
height: 100%;
border: solid 2px hsla(var(--hue), 50%, 40%, 1);
background-image: linear-gradient(to bottom right, hsl(var(--hue), 50%, 66%), hsl(calc(var(--hue) - 45deg), 40%, 50%));
transition: all 0.3s, translate 0s;
box-shadow: 0px 4px 10px hsla(var(--hue), 80%, 80%, 0);
border-radius: 4px;
text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
pointer-events: none;
}
.hands > *:hover {
animation: hover 1s ease-in-out infinite alternate forwards;
animation: hover 1s ease-in-out infinite alternate forwards;
}
.hands > *:hover::before {
transform: translateY(-62.5%) rotate(calc(var(--curve) * -1.1)) scale(1.3);
transition-duration: 0.2s, 0s;
box-shadow: 0px 4px 15px hsla(var(--hue), 80%, 70%, 0.6);
border: solid 2px hsla(var(--hue), 80%, 70%, 1);
color: hsl(var(--hue), 60%, 80%);
translate: 0px 0px 1px;
}
.hands:has(li:nth-child(1)) {
--cards: 1;
}
.hands > *:nth-child(1) {
--index: 0;
}
.hands:has(li:nth-child(2)) {
--cards: 2;
}
.hands > *:nth-child(2) {
--index: 1;
}
.hands:has(li:nth-child(3)) {
--cards: 3;
}
.hands > *:nth-child(3) {
--index: 2;
}
.hands:has(li:nth-child(4)) {
--cards: 4;
}
.hands > *:nth-child(4) {
--index: 3;
}
.hands:has(li:nth-child(5)) {
--cards: 5;
}
.hands > *:nth-child(5) {
--index: 4;
}
.hands:has(li:nth-child(6)) {
--cards: 6;
}
.hands > *:nth-child(6) {
--index: 5;
}
.hands:has(li:nth-child(7)) {
--cards: 7;
}
.hands > *:nth-child(7) {
--index: 6;
}
.hands:has(li:nth-child(8)) {
--cards: 8;
}
.hands > *:nth-child(8) {
--index: 7;
}
.hands:has(li:nth-child(9)) {
--cards: 9;
}
.hands > *:nth-child(9) {
--index: 8;
}
.hands:has(li:nth-child(10)) {
--cards: 10;
}
.hands > *:nth-child(10) {
--index: 9;
}
.hands:has(li:nth-child(11)) {
--cards: 11;
}
.hands > *:nth-child(11) {
--index: 10;
}
.hands:has(li:nth-child(12)) {
--cards: 12;
}
.hands > *:nth-child(12) {
--index: 11;
}
.hands:has(li:nth-child(13)) {
--cards: 13;
}
.hands > *:nth-child(13) {
--index: 12;
}
.hands:has(li:nth-child(14)) {
--cards: 14;
}
.hands > *:nth-child(14) {
--index: 13;
}
.hands:has(li:nth-child(15)) {
--cards: 15;
}
.hands > *:nth-child(15) {
--index: 14;
}
.hands:has(li:nth-child(16)) {
--cards: 16;
}
.hands > *:nth-child(16) {
--index: 15;
}
.hands:has(li:nth-child(17)) {
--cards: 17;
}
.hands > *:nth-child(17) {
--index: 16;
}
.hands:has(li:nth-child(18)) {
--cards: 18;
}
.hands > *:nth-child(18) {
--index: 17;
}
.hands:has(li:nth-child(19)) {
--cards: 19;
}
.hands > *:nth-child(19) {
--index: 18;
}
.hands:has(li:nth-child(20)) {
--cards: 20;
}
.hands > *:nth-child(20) {
--index: 19;
}
.hands:has(li:nth-child(21)) {
--cards: 21;
}
.hands > *:nth-child(21) {
--index: 20;
}
.hands:has(li:nth-child(22)) {
--cards: 22;
}
.hands > *:nth-child(22) {
--index: 21;
}
.hands:has(li:nth-child(23)) {
--cards: 23;
}
.hands > *:nth-child(23) {
--index: 22;
}
.hands:has(li:nth-child(24)) {
--cards: 24;
}
.hands > *:nth-child(24) {
--index: 23;
}
.hands:has(li:nth-child(25)) {
--cards: 25;
}
.hands > *:nth-child(25) {
--index: 24;
}
.hands:has(li:nth-child(26)) {
--cards: 26;
}
.hands > *:nth-child(26) {
--index: 25;
}
.hands:has(li:nth-child(27)) {
--cards: 27;
}
.hands > *:nth-child(27) {
--index: 26;
}
.hands:has(li:nth-child(28)) {
--cards: 28;
}
.hands > *:nth-child(28) {
--index: 27;
}
.hands:has(li:nth-child(29)) {
--cards: 29;
}
.hands > *:nth-child(29) {
--index: 28;
}
.hands:has(li:nth-child(30)) {
--cards: 30;
}
.hands > *:nth-child(30) {
--index: 29;
}
.hands:has(li:nth-child(31)) {
--cards: 31;
}
.hands > *:nth-child(31) {
--index: 30;
}
.hands:has(li:nth-child(32)) {
--cards: 32;
}
.hands > *:nth-child(32) {
--index: 31;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.