
Step 1.
Copy and paste the following code to your footer file right above the </body> tag:


<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script>
var ml4 = {};
ml4.opacityIn = [0,1];
ml4.scaleIn = [0.2, 1];
ml4.scaleOut = 3;
ml4.durationIn = 800;
ml4.durationOut = 600;
ml4.delay = 500;

anime.timeline({loop: true})
  .add({
    targets: '.ml4 .letters-1',
    opacity: ml4.opacityIn,
    scale: ml4.scaleIn,
    duration: ml4.durationIn
  }).add({
    targets: '.ml4 .letters-1',
    opacity: 0,
    scale: ml4.scaleOut,
    duration: ml4.durationOut,
    easing: "easeInExpo",
    delay: ml4.delay
  }).add({
    targets: '.ml4 .letters-2',
    opacity: ml4.opacityIn,
    scale: ml4.scaleIn,
    duration: ml4.durationIn
  }).add({
    targets: '.ml4 .letters-2',
    opacity: 0,
    scale: ml4.scaleOut,
    duration: ml4.durationOut,
    easing: "easeInExpo",
    delay: ml4.delay
  }).add({
    targets: '.ml4 .letters-3',
    opacity: ml4.opacityIn,
    scale: ml4.scaleIn,
    duration: ml4.durationIn
  }).add({
    targets: '.ml4 .letters-3',
    opacity: 0,
    scale: ml4.scaleOut,
    duration: ml4.durationOut,
    easing: "easeInExpo",
    delay: ml4.delay
  }).add({
    targets: '.ml4',
    opacity: 0,
    duration: 500,
    delay: 500
  });
</script>




Step 2. 
Insert the following CSS into your style.css file:



.iacainteractive1 span {
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    line-height: initial; color:#FFF;
}

.gpacontent {
    text-align: center;
    font-size: 20px;
    background: #dedede;
    padding: 10px;
    display: block;
    font-weight: bold;
}
.iacainteractive1 {
background: rgba(73,155,234,1);
    background: -moz-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(73,155,234,1)), color-stop(100%, rgba(32,124,229,1)));
    background: -webkit-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: -o-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: -ms-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: linear-gradient(to bottom, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5', GradientType=0 );
   }

.ml4:hover {
    background: #4096ee;
    background: -moz-linear-gradient(top, #4096ee 0%, #60abf8 56%, #7abcff 100%);
    background: -webkit-linear-gradient(top, #4096ee 0%,#60abf8 56%,#7abcff 100%);
    background: linear-gradient(to bottom, #4096ee 0%,#60abf8 56%,#7abcff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#7abcff',GradientType=0 );

}
.ml4 {
    background: rgba(73,155,234,1);
    background: -moz-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(73,155,234,1)), color-stop(100%, rgba(32,124,229,1)));
    background: -webkit-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: -o-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: -ms-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    background: linear-gradient(to bottom, rgba(73,155,234,1) 0%, rgba(32,124,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5', GradientType=0 );
    color: #fff;
    position: relative;
    font-weight: 900;
    font-size: 20px;
    display: flex;
    color: #fff !important;
    height: 74px; overflow:hidden;
    text-align: center;
}
element {

    opacity: 0;
    transform: scale(3);

}

.ml4 .letters {

    position: absolute;
    margin: auto;
    left: 0;
    top: 0.5em;
    right: 0;
    opacity: 0;

}



Step 3. 
Create your advertisement special page, add This code onto that page:

<div class="iacainteractive1">
<div class="ml4"><a href="#"><span class="letters letters-1">No Cost!</span> <span class="letters letters-2">No SSN Required!</span> <span class="letters letters-3">No Obligation!</span></a></div>

<div class="gpacontent"><a href="#">Get Pre-Approved &amp; See Your Credit Score</a></div>
</div>


