کد html:
<div class="wave-container">
<div class="wave"></div>
<div class="wave"></div>
</div>
کد css:
.wave-container {
position: relative;
width: 100%;
height: 200px;
overflow: hidden;
background: #00d4ff;
}
.wave {
position: absolute;
width: 200%;
height: 200px;
background: rgba(255, 255, 255, 0.3);
top: 100px;
left: -100px;
border-radius: 50%;
animation: wave-animation 4s infinite linear;
}
.wave:nth-child(2) {
top: 120px;
background: rgba(255, 255, 255, 0.5);
animation-duration: 6s;
}
@keyframes wave-animation {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
==..==..==..==..==..==..==..==..==..==..==..
✅کانال پشتیبانی برنامه نویسی وب آیولرن
✨ @aiolearn