Web Development Code
6.2K 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
Web Development Code
Photo
كود تصميم ساعة

<!DOCTYPE html>

<html>
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
<title>clock</title>
<style >
body{margin:0;
padding :0;
background :#323232;}
.clock{width:200px;
height :200px;
background :#fff;
align-items:center;
position :absolute ;
top:200px;
left:150px;
transform:translate(-50%,-30%);
border-radius :50%;
border:20px solid #a55;
box-shadow :0 0 20px #a55,
inset 0 0 25px #ff0}
.clock:before{
content:"";
width:40%;
height :6px;
position :absolute;
top:50%;
left:50%;
z-index:3;
background :#111;
border-radius :3px;
transform-origin:left;
animation :animate 60s infinite linear; }
.clock:after{
content:"";
width:30%;
height :6px;
position :absolute;
top:50%;
left:53%;
z-index:2;
border-radius :3px;
background :#000;
transform-origin:left;
animation :animate 3600s linear infinite ; }
span{position:absolute;
top:48%;
left:48%;
width :15px;
z-index:4;
height :15px;
background :#a55;
border-radius :50%;}
.top{position:absolute;
top:3%;
left:46%;
background :none}

.bottom{position:absolute;
top:91%;
left:46%;
background :none}


@keyframes animate{
0%{transform:rotate(-90deg)}
100%{transform:rotate(360deg) }










</style>
</head>
<body>
<div class="clock">
<span ></span>
<span class="top">12</span>
<span class="bottom">6</span>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Load</title>
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background:#879194;
width: 100%;
height: 600px;
}
.load {
position: relative;
width: 200px;
background: #fff;
padding: 17px 120px;
border-radius:25px;
top: 50%;
margin: 0 auto;
box-shadow: 0px 0px 5px 4px #94ff00;
}
.load span {
position: absolute;
top: 0;
left: 0;
border-radius: 25px;
background:#c3f676;
padding: 17px 3px;
filter:brightness(1000%);
animation: load 2s linear infinite ;

}

@keyframes load{
0% , 100%{
width: 3px;
filter:hue-rotate(90deg);

}
50%{
width: 240px;
filter:hue-rotate(360deg);

}
}
</style>
</head>
<body>

<div class="load">
<span></span>
</div>
</body>
</html>
<!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>
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css" media="all">
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #000
}
.span1{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 200px;
height: 200px;
background: transparent;
border-radius: 50%;
box-shadow: 0 5px 0 #fff;
animation: animate 2s linear infinite;


}
.span2{
position: relative;
bottom: -50%;
left: 0;
transform: translate(-50%,-50%);
padding:100px;
background:transparent;
border-radius:50%;

}
.span2:after{
content: "";
position: absolute;
width: 10px;
height: 10px;
background: #fff;
top: calc(50% - 10px);
left: -4px;
border-radius: 50%;
animation: animate 2s linear infinite;
}


@keyframes animate {
0%{
transform: rotate(0deg)
}
100%{
transform: rotate(360deg)
}
}
p{

color: red;
position: absolute;
top: calc(50% + 90px);
left: calc(50% + 100px);
transform: translate(-50%,-50%);
text-transform: uppercase;
font-size: 27px;
letter-spacing: 5px;
font-weight: bold;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
padding: 2px 4px;

box-shadow: 0 0 5px rgba(255,255,225,0.5)
}
@keyframes text {
0%,100%{
opacity: 1;
}
50%{
opacity: .1;
}
}
.pp span {
animation: text 2s linear infinite;

}
.pp span:nth-child(1){
animation-delay: .1s
}
.pp span:nth-child(2){
animation-delay: .3s
}
.pp span:nth-child(3){
animation-delay: .5s
}
.pp span:nth-child(4){
animation-delay: .7s
}
.pp span:nth-child(5){
animation-delay: .9s
}
.pp span:nth-child(6){
animation-delay: 1.1s
}
.pp span:nth-child(7){
animation-delay: 1.3s
}

</style>
</head>

<body>
<span class="span1"><span class="span2"></span></span><p class="pp"></p>
</body>
<script type="text/javascript" charset="utf-8">
var i = 0
var p = document.querySelector(".pp")
var text = "loading"
var sp = text.split("")
sp.reverse();
while(i< sp.length){
var span = document.createElement("span")
span.innerHTML += sp[i]
p.prepend(span)
i++
}

</script>

</html>