Welcome to Praful Bhuskute BlackSpy Praful Bhuskute BlackSpy Praful Bhuskute BlackSpy Praful Bhuskute BlackSpy

3D Card With Hover Effect only using HTML & CSS

3D Card With Hover Effect only using HTML & CSS reference

				
					<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>3D card Display with Hover Effect</title>
    <style>
        html,
        body {
            height: 100%;
        }
        body {
            margin: 0;
            padding: 0;
            display: grid;
            background-color: black;
            place-items: center;
        }
        .container {
            position: relative;
            perspective: 40em;
            display: grid;
            transform-style: preserve-3d;
            font-family: Arial, Helvetica, sans-serif;
        }
        .card {
            grid-area: 1/1;
            height: 250px;
            width: 450px;
            transform: translateX(10px) rotateY(25deg) rotateX(10deg);
            background: white;
            justify-content: center;
            padding: 30px;
            font-size: 20px;
            font-weight: 900;
            backface-visibility: hidden;
            box-shadow: 0 10px 30px -3 rgba(0, 0, 0, 1);
            opacity: 1;
            cursor: pointer;
        }
        h1 {
            font-size: 48px;
            font-weight: 900;
            line-height: 60px;
            text-align: center;
        }
        .card .write {
            color: #000;
            display: inline-block;
            transform: translate(-1px, -1px)scale(0.75);
        }
        .container:before {
            --bw: 9px;
            content: '';
            grid-area: 1/1;
            backface-visibility: hidden;
            height: 100%;
            width: 100%;
            margin-top: calc(-1*var(--bw));
            margin-left: calc(-1*var(--bw));
            background: transparent;
            transform: translateX(-60px) rotateY(-30deg) rotateX(15deg) scale(1.03);
            pointer-events: none;
            border: var(--bw) solid #f0a500;
            box-sizing: content-box;
        }
             .container:hover>div,
        .container:hover:before {
            transform: none;
            opacity: 1;
        }
        
        .container>div,
        .container::before {
            will-change: transform;
            transition: 0.3s transfrom cubic-bezier(.35, .46, .45, 1);
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="card">
            <h1><span class="write"> 3D Card Design with Hover Effect</span></h1>
        </div>
    </div>
</body>

</html>
				
			

Output:

3D card Display with Hover Effect

3D Card Design with Hover Effect

Credit: Coding Master youtube channel

Drop your queries

Table of Contents

Have A Project In Mind? Let's Get To Work