JSFiddle - React, Tailwind, and code Playground

by Andra Jimenez

HTML

<div class="pulse">
    <p> Andrea Jmenez test</p>
    <p> Andrea Jimenez test 2</p>
</div>

CSS

.pulse{
    margin-top: 60px;
text-align:center;
-webkit-transition:all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
background: none repeat scroll 0% 0% transparent;

}

.pulse:hover{
background: none repeat scroll 0% 0% transparent;
-webkit-transform: scale(1.2);
transform: scale(1.2);
   
}

JavaScript

//Pulse effect on CSS