HTML CSS amazing project 😍 | html css projects #shorts

preview_player
Показать описание
code credit: @OnlineTutorialsYT
Рекомендации по теме
Комментарии
Автор

This progam is Originally made by 'Online Tutorials' Channel Link in Description

AnasDharar
Автор

would you do a tutorial ?? about animation like this in css

Mohamed_MDJ
Автор

En los translate de la parte derecha del último keyframes, ¿qué valores son?, es que no se pueden apreciar. Ayuda por favor. ☺️

mariajosemirandaflorian
Автор

bro this is how i tried to replicate it but the ball is not sticking to the hemisphere plz reply

<!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.0">
<title>Document</title>
<style>
body {
margin: 0;
padding: 0;
width: 600px;
height: 500px;
overflow: hidden;
background: #555;
}

.arcplatform {
position: absolute;
top: 90%;
left: 30%;
width: 500px;
height: 150px;
background: rgba(246, 109, 45, 0.979);
border-radius: 50%;
}

.circle {
position: absolute;
top: -200px;
left: 30%;
width: 200px;
height: 200px;
background: #fff;
border-radius: 50%;
animation: circleanim 4s linear alternate infinite;
}

.hemisphere {
width: 200px;
height: 100px;
position: absolute;
top: -100px;
border: none;
border-radius: 0 0 100px 100px;
background-color: blue;
overflow: hidden;
transform: rotateZ(-30deg);
animation: hemianim 2s linear alternate infinite;
}

.hemisphere::before {
content: "";
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
background-color: inherit;
bottom: -50px;
transform: rotateZ(180deg);
}

.ball {
position: absolute;
top: -180px;
left: 80%;
width: 30px;
height: 30px;
background: #fff;
border-radius: 50%;
z-index: 1;
animation: ballanim 2s linear alternate infinite;
}


/* @keyframes ballanim {
0% {
transform: translate(0px, 10px);
}

50% {
transform: translate(-75px, 50px);
}
100% {
transform: translate(-150px, 10px);
}
} */

@keyframes hemianim {
0%{transform: rotateZ(-30deg);}
100%{transform: rotateZ(30deg);}
}
@keyframes circleanim {
50%{ transform: rotateZ(30deg);transform: translate(-30px);}
100%{ transform: rotateZ(-30deg);transform: translate(30px);}
}


</style>
</head>

<body>
<div class="arcplatform">
<div class="circle">
<div class="ball"></div>
<div class="hemisphere">
</div>
</div>
</div>
</body>

</html>

aqibmalik
Автор

@keyframes animateBall {
0% {
transform: translateY(-100%) translateX(-80%);
}
50% {
transform: translateY(-100%) translateX(-550%);
}
100% {
transform: translateY(-100%) translateX(-80%);
}
}






a Great Day....🤗🤗🤗

vignesh-ytko
Автор

Where is the full code?
Can you help me?

hosin_for_information
Автор

معي الدائرة الصغيرة ما صلحت معي ممكن كيف

صخرالشميري-صع
Автор

I also want full code off bal animation

vedikapandit
Автор

Broo need full code ! Or give the orginal video

mdfardeenali
Автор

bro in keyframe animateball translate what you write

rugvedgamer
Автор

Ball in the air for some Mili seconds 😂
Means gravity is chutiya
By the Way Better ❤

StoneYt
Автор

plz tell me if u'll reply or not

aqibmalik
Автор

Why do you show other people's work as your own?

pankichal
Автор

Y are you wasting time on him ? He's not even answering a single question 😮

Its_AP