Transform

This is a part of the Ghost Kit Pro plugin.
Purchase the Pro plugin to access this and other advanced features.

The Transform extension applies a CSS transform to a WordPress block. Move it, scale it, rotate it, skew it, and set the point it transforms around. Each value has a hover state, so a card can tilt when the pointer reaches it. Transform is part of Ghost Kit Pro.

Available Tools

  • Translate
  • Scale
  • Rotate
  • Skew
  • Perspective
  • Origin

Enable in 3rd-party blocks

<?php
registerBlockType( 'my/block', {
    title: 'My block',
    supports: {
        ghostkit: {
            transform: true,
        }
    },
    ...
} );
Was this page helpful?