Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4efc584
Add initial HTML structure for bouncing ball
Hitesh-Bhor28 Oct 16, 2025
0494ec7
Merge pull request #1 from Hitesh-Bhor28/Hitesh-Bhor28-patch-2
Hitesh-Bhor28 Oct 16, 2025
2838ea7
Add CSS for bouncing ball animation
Hitesh-Bhor28 Oct 16, 2025
4557940
Merge pull request #2 from Hitesh-Bhor28/Hitesh-Bhor28-patch-3
Hitesh-Bhor28 Oct 16, 2025
91c857a
Add meta.json for bouncing-ball project
Hitesh-Bhor28 Oct 16, 2025
0f46864
Merge pull request #3 from Hitesh-Bhor28/Hitesh-Bhor28-patch-4
Hitesh-Bhor28 Oct 16, 2025
977166c
Add bouncing-ball index.html to Art/hiteshbhor-bouncing-ball
Hitesh-Bhor28 Oct 16, 2025
f8bcefb
Merge pull request #4 from Hitesh-Bhor28/Hitesh-Bhor28-patch-5
Hitesh-Bhor28 Oct 16, 2025
e775f87
Add bouncing-ball styles.css to Art/hiteshbhor-bouncing-ball
Hitesh-Bhor28 Oct 16, 2025
45c903e
Merge pull request #5 from Hitesh-Bhor28/Hitesh-Bhor28-patch-6
Hitesh-Bhor28 Oct 16, 2025
2178bb8
Add bouncing-ball meta.json to Art/hiteshbhor-bouncing-ball
Hitesh-Bhor28 Oct 16, 2025
92d3e81
Merge pull request #6 from Hitesh-Bhor28/Hitesh-Bhor28-patch-7
Hitesh-Bhor28 Oct 16, 2025
b78e90b
Delete hiteshbhor-bouncing-ball/index.html
Hitesh-Bhor28 Oct 16, 2025
2f99d2f
Merge branch 'master' into fix-folder-structure
Hitesh-Bhor28 Oct 17, 2025
16f5f32
Merge branch 'master' into fix-folder-structure
LaurelineP Oct 18, 2025
a43eede
Merge branch 'master' into fix-folder-structure
LaurelineP Oct 18, 2025
6b2d2e7
Merge branch 'master' into fix-folder-structure
LaurelineP Oct 18, 2025
5ed3719
Merge branch 'master' into fix-folder-structure
LaurelineP Oct 18, 2025
295d6f0
Merge branch 'master' into fix-folder-structure
LaurelineP Oct 22, 2025
d0d0dfb
Merge branch 'master' into fix-folder-structure
LaurelineP Oct 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Art/hiteshbhor-bouncing-ball/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bouncing Ball</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="ball"></div>
</body>
</html>
4 changes: 4 additions & 0 deletions Art/hiteshbhor-bouncing-ball/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"artName": "bouncing-ball",
"githubHandle": "hiteshbhor"
}
27 changes: 27 additions & 0 deletions Art/hiteshbhor-bouncing-ball/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(to bottom, #1e3c72, #2a5298);
margin: 0;
overflow: hidden;
}

.ball {
width: 60px;
height: 60px;
background-color: #ff4b5c;
border-radius: 50%;
position: relative;
animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-200px);
}
}
4 changes: 4 additions & 0 deletions hiteshbhor-bouncing-ball/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"artName": "bouncing-ball",
"githubHandle": "hiteshbhor"
}
27 changes: 27 additions & 0 deletions hiteshbhor-bouncing-ball/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(to bottom, #1e3c72, #2a5298);
margin: 0;
overflow: hidden;
}

.ball {
width: 60px;
height: 60px;
background-color: #ff4b5c;
border-radius: 50%;
position: relative;
animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-200px);
}
}