CanvaTools Workspace
PDF Tools
CONVERT TO PDF
Finance Tools
Archive Tools
ARCHIVE UTILITIES
CanvaTools Premium100% Free Assets Suite
Back to Designer Tools Suite
UI & Motion Suite

3D CSS Tilt & Transform — Interactive Motion Engine

A real-time interactive motion engine for modern UI developers. Customize physics, depth, and styles to create premium 3D effects.

Color EnginePalette

#4f46e5
#06b6d4

Physics & DepthControls

Tilt Intensity15°
Perspective1200px
Hover Scale1.03x
Shadow Depth20px
Interactive Stage
Motion Engine

Live Card

3D
Interactive Motion & Depth

UI Styles

Motion Types

<!-- HTML -->
<div class="tilt-container">
  <div class="tilt-card" id="card">
    <div class="content">
      <h3>Premium 3D</h3>
    </div>
  </div>
</div>

<!-- CSS -->
<style>
.tilt-container { perspective: 1200px; }
.tilt-card {
  width: 256px; height: 320px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.content { padding: 24px; transform: translateZ(40px); }
</style>

Real Reactive Engine

This playground is not static. Every slider and color picker directly controls the math behind the preview and the generated code.