Web Development Code
6.18K subscribers
389 photos
55 videos
132 files
201 links
قناة خاصه بتطوير الويب
ونشر مشاريع الويب
وكل مايخص الويب
الادمن : @Noureldin13
#Html
#Css
#Bootstrap
#JavaScript
#ReactJs
#Php
#NodeJs
#Mysql
#MongoDB
Buy ads: https://telega.io/c/codedevelopment

جروب المناقشة :
@codedevchat
Download Telegram
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Test</title>
<link rel="stylesheet" href="style.css">
<style>

*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: rgba(0,0,0, 0.5);
width: 100%;

}
.conta{
margin: 50% 0;

position: relative;
bottom: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 500px;
height: 500px;
background: #f6cf59;
border-radius: 50%;
border : 5px solid #fff;
}


.one , .two {
position: absolute;
background: #000;
padding: 25px;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);

}
.one {
left: 30%;
top: 30%;

}
.two{
top: 30%;
left: 70%
}
.two:before , .one:before{
content: "";
position: absolute;
background: #89E1A0;
border-radius: 50%;
padding: 10px;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
box-shadow: 0 0 0 3px #74B27FAB;


animation: hh 2s linear infinite;
}
.one:after , .two:after{
content: " ";
background: #000;
position: absolute;
top: -25px;
left: 0px;
padding: 4px 25px;
border-radius: 100px 100px 0 0;


}
@keyframes hh {
0% ,100%{
top: 50%
}
15%{
top: 20%;
}
25%{
top: 50%
}
35%{
top: 70%
}
50%{
top: 50%;
left:50%;
}
65%{
left: 70%
}
75%{
left: 50%
}
90%{
left: 25%
}
}
.three {
position: absolute;
bottom: 25%;
background: #000;
padding: 50px 120px;
left:50%;
transform: translate(-50%);
border-radius:0 0 120px 130px;

}
.three:after{
content: " ";
position: absolute;
padding: 40px 130px 50px 130px;
background: #f6cf59;
left: -5px;
top: -5px;
border-radius:0 0 60% 60% ;
animation: animate 1s linear infinite;

}
@keyframes animate{
0% , 100%{
top: -5px;


}
50%{
top: -25px;

}
}
</style>
</head>

<body>
<div class="conta">
<span class="one"></span>
<span class="two"></span>
<span class="three"></span>

</div>





</body>
</html>