DataCSS Library

A lightweight, powerful theming system with enhanced animations and styles

Theming
Styling
Components
Animations
Attention Effects
Staggered
Scroll Reveal
Page Transitions

Theme Picker

Choose a color theme for the interface.

Theme Color Palettes

Backgrounds

Accents

Status

Active theme: light

Style Picker

Choose a visual style for the interface components.

Style Features

Typography
Heading weight: var(--heading-font-weight)
Letter spacing: var(--heading-letter-spacing)
Shapes
Border radius: var(--border-radius)
Border style: var(--card-border-style)
Effects
Box shadow: var(--box-shadow)
Transition: var(--transition-speed)

Animation Demo

Hover over these elements to see style-specific animations

Hover Me
<body data-theme="light" data-style="flat">
  <!-- Your content here -->
</body>
Active style: flat

UI Elements

This card shows various UI elements with the selected theme and style.

Text Elements

This card demonstrates text styling, links and status colors.

Success textWarning textError text

This is a sample link that demonstrates the hover effect. Links are styled differently based on the selected style variant.

  • List items also receive style-specific treatments
  • Notice how the bullet style changes
  • The spacing is also adjusted per style

Text Styles

Primary text - Used for main content

Secondary text - Used for descriptions and less important content

Tertiary text - Used for hints and additional information

Status Buttons

Buttons with different status styles and hover effects.


Dividers also adapt to the style

code element

Code blocks match the theme

Component Interactions

Interactive elements and how they respond to user input.

Basic Animations

Click on the buttons to see different animation effects.

Animation Demo

This box will animate when you click a button above

How to Use

Add the data-animate attribute to any HTML element:

<div data-animate="fade-in">This content will fade in</div>
<p data-animate="fade-up">This paragraph will fade up</p>

You can also apply animations with JavaScript:

// Get element
const element = document.querySelector('#myElement');

// Apply animation
DataCSSEffects.animate(element, 'fade-up', {
  delay: 0.5,    // Optional delay in seconds
  duration: 1.2, // Optional duration in seconds
  timing: 'ease-out'  // Optional timing function
});

Attention Animations

Draw attention to elements with these eye-catching animations.

Attention Demo

This box will animate when you click a button above

Timing Utility Classes

Combine animations with timing utility classes:

Duration Classes

.duration-300 → 0.3s
.duration-500 → 0.5s
.duration-800 → 0.8s

Timing Functions

.ease .ease-in .ease-out
.elastic .spring .linear
<div data-animate="bounce" class="duration-800 spring">
  Bounces for 0.8s with spring easing
</div>

Staggered Animations

Elements animate one after another with increasing delays.

Item 1
Item 2
Item 3
Item 4
Item 5
Item 6

How to Use

Add data-stagger to the parent and data-animate to each child:

<ul data-stagger="medium">
  <li data-animate="fade-in">First item</li>
  <li data-animate="fade-in">Second item</li>
  <li data-animate="fade-in">Third item</li>
</ul>

Available stagger types:

  • fast - 0.1s between items
  • medium - 0.2s between items
  • slow - 0.3s between items
  • cascade - increasing duration for each item
  • reverse - last items animate first
  • random - random delays for each item

Or use the JavaScript API for more control:

// Animate multiple elements with staggered timing
const elements = document.querySelectorAll('.my-items');
DataCSSEffects.animateGroup(elements, 'fade-up', {
  startDelay: 0.2,     // Wait before starting
  staggerDelay: 0.15,  // Delay between items
  duration: 0.8        // Duration for each animation
});

Scroll Reveal

Elements animate when they enter the viewport as you scroll down.

Scroll Reveal - Basic Fade

This element fades in when you scroll to it

Scroll Reveal - Fade Up

This element fades up when you scroll to it

Scroll Reveal - From Left

This element slides in from the left

Scroll Reveal - From Right

This element slides in from the right

Scroll Reveal - Scale

This element scales up as it fades in

Scroll Reveal - Rotate

This element rotates into position

How to Use

Add the data-scroll attribute to elements you want to reveal on scroll:

<div data-scroll="reveal">Fades in when scrolled into view</div>
<div data-scroll="reveal-up">Fades up when scrolled into view</div>
<div data-scroll="reveal-left">Slides in from left</div>
<div data-scroll="reveal-right">Slides in from right</div>
<div data-scroll="reveal-scale">Scales into view</div>
<div data-scroll="reveal-rotate">Rotates into position</div>

Add the data-scroll-repeat attribute to make the animation replay each time the element comes into view.

Page Transitions

Smooth transitions between views using the modern View Transition API.

View Transition Demo

Click any button above to see smooth View Transitions API effects

Modern browsers will use the View Transitions API for silky smooth transitions

How to Use

Use the modern View Transition API for seamless transitions:

// Using View Transition API for smooth transitions
DataCSSEffects.viewTransition('fade', () => {
  // Update your UI here
  document.querySelector('#content').innerHTML = newContent;
});

For multi-page (cross-document) transitions, you can use:

// Add this CSS to enable view transitions between pages
@view-transition {
  animation-duration: 0.6s;
}

// Then trigger a transition before navigation
DataCSSEffects.viewTransition('fade', () => {
  window.location.href = 'new-page.html';
});

Available transition types:

  • Basic: fade, zoom, flip, rotate
  • Advanced: crossfade
  • Legacy fallback for browsers without View Transitions API support
Note: The View Transition API is supported in modern browsers. DataCSS automatically falls back to traditional transitions in unsupported browsers.