Features
🔸Fully customizable
🔸Responsive
🔸Code
Tutorial link:
☑️Support me on Patreon
☑️Elementor file download link click here
Code
<style>
.card{
overflow: hidden !important;
display: flex;
justify-content: center;
align-items: center;
}
.card:before{
content: '';
position: absolute;
width:180px;
height: 140%;
background: linear-gradient(#0033cc, #05ff4c);
animation: animate 4s linear infinite;
}
@keyframes animate{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
</style>
Comments
Post a Comment