Skip to content

Commit

Permalink
Merge pull request #191 from kiruba-r11/feature-1
Browse files Browse the repository at this point in the history
Added Loading Animation
  • Loading branch information
Ayush7614 authored Jul 10, 2021
2 parents d7d9fba + 369eaae commit 495425f
Show file tree
Hide file tree
Showing 27 changed files with 80 additions and 0 deletions.
Binary file added .github/.DS_Store
Binary file not shown.
Binary file added Brick Breakout Game/.DS_Store
Binary file not shown.
Binary file added Carousel/.DS_Store
Binary file not shown.
Binary file added Color Flipper/.DS_Store
Binary file not shown.
Binary file modified Connect Four/.DS_Store
Binary file not shown.
Binary file added Drum-Kit/.DS_Store
Binary file not shown.
Binary file added Feature Card Component/.DS_Store
Binary file not shown.
Binary file added Find the word/.DS_Store
Binary file not shown.
Binary file added Hangman/.DS_Store
Binary file not shown.
20 changes: 20 additions & 0 deletions Loading Animation/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!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>Loading Animation</title>

<!-- CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>

<div class="main-container">
<div class="rotate-container"></div>
<h1>Loading</h1>
</div>

</body>
</html>
54 changes: 54 additions & 0 deletions Loading Animation/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
* {
margin: 0;
padding: 0;
}

body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
background-color: black;
}

.main-container {
position: relative;
}

.rotate-container {
width: 150px;
height: 150px;
border-radius: 50%;
border-right: 4px solid white;
animation: rot 2s linear infinite;
}
h1 {
position: absolute;
color: white;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
font-size: 1.5rem;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
letter-spacing: 2px;
font-weight: 400;
}

@keyframes rot {
0% {

}
25% {
transform: rotate(90deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
}
}
Binary file modified Memory Game/.DS_Store
Binary file not shown.
Binary file added Minesweeper Game/.DS_Store
Binary file not shown.
Binary file added Music-player/.DS_Store
Binary file not shown.
Binary file added Pricing Card/.DS_Store
Binary file not shown.
Binary file modified Profile Card View/.DS_Store
Binary file not shown.
Binary file modified Project-Website/.DS_Store
Binary file not shown.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,12 @@ You can refer to the following articles on the basics of Git and Github and also

<p align="center">
<a href="https://github.com/Ayush7614"><img src="./Screenshots/piano.png" /></a>
</p>

### 77.Loading Animation

<p align="center">
<a href="https://github.com/Ayush7614"><img src="./Screenshots/Loading Animation.gif" /></a>
</p>

### 78. Shopping_Cart
Expand Down
Binary file added Rock-Paper-Scissors game/.DS_Store
Binary file not shown.
Binary file added Screenshots/Loading Animation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Simple Chatroom/.DS_Store
Binary file not shown.
Binary file added Social Media Dashboard/.DS_Store
Binary file not shown.
Binary file added Tic-Tac-Toe/.DS_Store
Binary file not shown.
Binary file added Vaccine Slot Finder/.DS_Store
Binary file not shown.
Binary file added Whack a mole game/.DS_Store
Binary file not shown.
Binary file added admin dashboard/.DS_Store
Binary file not shown.
Binary file added flappybird/.DS_Store
Binary file not shown.

0 comments on commit 495425f

Please sign in to comment.