Hi,
How can I change the loading animation of the new blog items after pressing the “Load More” Button.
I thought it was on main CSS style.css:line 8548. But it didn’t work with other animations.
I want to prepare my own animation with CSS3.
Thanks!
R.
.three-bounce .spinner > div {
width: 18px;
height: 18px;
margin: 0 3px;
background-color: #333;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.three-bounce .spinner > .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.three-bounce .spinner > .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}