fetch("api.kai-zer.ru/dev/method/products.getAll")
.then(r => r.json())
.then(data => {
console.log(data.response);
})
@keyframes slideme {
0% {
left: -30px;
margin-left: 0px;
}
30% {
left: 110%;
margin-left: 80px;
}
100% {
left: 110%;
margin-left: 80px;
}
}
.custom-btn:after {
content: "";
display: block;
width: 30px;
height: 300px;
margin-left: 60px;
background: #fff;
position: absolute;
left: -40px;
top: -150px;
z-index: 1;
transform: rotate(45deg);
transition: all 0.1s;
animation-name: slideme;
animation-duration: 3s;
animation-delay: 0.05s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}