Is it possible to set this slider to autoplay using simple CSS without LESS? The author of the slider used LESS, but I will be using plain CSS in my case. Can someone please point out where the @animation should be added to enable autoplay?
Check out the code on Codepen: https://codepen.io/drygiel/pen/rtpnE
Thank you!
Below is the simple CSS code (without LESS):
.csslider {
-moz-perspective: 1300px;
-ms-perspective: 1300px;
-webkit-perspective: 1300px;
perspective: 1300px;
display: inline-block;
text-align: left;
position: relative;
margin-bottom: 22px;
}
.csslider > input {
display: none;
}
...
/* More CSS code here */
...