CSS Brio

Create CSS Animation Instantly!

Have amazing animation on your website in seconds.

Get it now Available in chrome store
CSS Brio
CSS Brio Live Animation

Live Animation Live Animation Preview

CSS Brio allows you to preview your animations and see the kinds of animations available.

Code Provider CSS Code Provider

The CSS code used in the animations are provided by CSS Brio. Just choose your animation and view the code used.

CSS Brio Code Provider

How to Setup CSS Brio

Creating animations for your screen is easy, all you need is copy-paste the CSS code.

Step 1: Copy and Paste below CSS code to your Stylesheet.


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}


Step 2: Once Animation from CSS Brio is copied and selected paste CSS code as shown below.


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}


Step 3: Implementing animation to your page.

	
//Animation play once use code below.
<div class="yourClass animated pulse">(",)</div>

<div id="yourID"  class="animated pulse">(",)</div>

//Animation play continues use code below.
<div class="yourClass animated infinite pulse">(",)</div>

<div id="yourID" class="animated infinite pulse">(",)</div>

//Additional Sample.
<img src="image-url" class="yourClass animated pulse" alt="Sample Image">

<img src="img-url" id="yourID" class="animated pulse" alt="Sample Image">

<img src="image-url" class="yourClass animated infinite pulse" alt="Sample Image">

<img src="img-url" id="yourID" class="animated infinite pulse" alt="Sample Image">


Watch How CSS Brio Works

Learn how easy CSS Brio works in the video below:

Designer's best CSS Animation companion

Acknowledgement

The CSS Brio browser extension is made possible through the following animation providers.

Daniel Eden Animate.CSS
https://daneden.github.io/animate.css/

Nick Pettit CSS Animation Contribution
https://github.com/nickpettit/glide

And CSS Brio is crafted with passion by

Justin Raymond Cruz Ventura (JRAYCV)
https://jraycv.github.io

github