Cute Ghost Button

0 viewsmedium
Background:
1
2
3
4
5
<button class="ghost-btn">
  <span class="ghost-icon">👻</span>
  <span class="ghost-text">Boo!</span>
  <div class="ghost-trail"></div>
</button>
Was this helpful?

What is inside Cute Ghost Button

Cute Ghost Button is a CSS button built with a keyframe animation, a blurred backdrop, transforms, defined in 39 lines across 6 selectors.

20
CSS properties
6
Selectors
39
Lines of CSS
3
Formats

Techniques used

Keyframe animationTransitionsTransformsShadowsBackdrop blurHover state

Animations defined: ghost-floatghost-wiggle

CSS properties in this component

align-itemsanimationbackdrop-filterbackgroundborderborder-colorborder-radiusbox-shadowcolorcursordisplayfont-familyfont-sizefont-weightgapoverflowpaddingpositiontransformtransition

Accessibility check2 to fix

  • Built on a native <button> element, so keyboard focus and screen reader semantics work without extra attributes.
  • No focus style is defined. Add one before shipping, or keyboard users lose track of position.
  • Animates without a prefers-reduced-motion guard. Wrap the animation in that query if motion sensitivity matters to your audience.

Browser support notes

  • Backdrop filter needs a -webkit- prefix on older Safari.

These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.

About Cute Ghost Button

Cute Ghost Button is a button built with a keyframe animation, transforms, layered shadows and a blurred backdrop. Its stylesheet runs to 39 lines across 6 rules, declaring 20 distinct properties. It styles hover state explicitly, so the component responds to interaction rather than sitting still. The animation is driven by keyframe sequences named ghost-float and ghost-wiggle, which you can retime or remove without touching the rest of the styling. Every format shown on this page is the same component, so you can take HTML, CSS and Tailwind depending on how your project is set up. Nothing is minified and nothing depends on a framework.

When to use

How it works

The base rule sets the shape with border-radius, display, padding and position. Movement is done with transforms rather than by changing position or size, which is what keeps it smooth: transforms are composited and do not force the browser to lay the page out again. State changes are eased with a transition, so hovering does not snap. The looping motion comes from ghost-float and ghost-wiggle. Changing the animation-duration is usually the only edit needed to make it faster or calmer. The backdrop filter blurs whatever sits behind the element, which means the effect depends on the page underneath rather than on the component alone.

Accessibility

Keyboard navigation
Supported
Screen reader
Friendly
ARIA
Native element semantics, no extra attributes needed

Built on a native <button> element, so keyboard focus and screen reader semantics work without extra attributes. No focus style is defined. Add one before shipping, or keyboard users lose track of position. Animates without a prefers-reduced-motion guard. Wrap the animation in that query if motion sensitivity matters to your audience. Those are 2 things to fix before this ships in front of users.

Browser support

Chrome
76+
Firefox
103+
Safari
9+
Edge
79+

Backdrop filter needs a -webkit- prefix on older Safari.

Frequently asked questions