-
Couldn't load subscription status.
- Fork 1.5k
Addition of Loading/retro computer loader #888
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
+55
−0
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a53d057
added new directory called retro and added index.html file with html5...
Guarotav c292716
deleted the gif from the directory and replaces the href with the act...
Guarotav c7b8488
Update from last commit. Added css
Guarotav b00299c
Added animation and border to contianer
Guarotav 3892e01
Comments added
Guarotav 22f5a70
Added my codepen code to readmefile
Guarotav 039560c
Added image of loader to images directory and also changed the image ...
Guarotav File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file added
.DS_Store
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
images/Screenshot (43).png
15 changes: 15 additions & 0 deletions
retro-loader/index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| <!DOCTYPE html> | ||
| <head> | ||
| <title>Retro Loader</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| <link rel="icon" type="image/gif" href="https://i.pinimg.com/originals/8b/c9/32/8bc932d9b88b0ba632c09c0a0f422ca5.gif" /> | ||
| </head> | ||
| <body> | ||
| <div class="loader-container"> | ||
| <img | ||
| src="https://i.pinimg.com/originals/8b/c9/32/8bc932d9b88b0ba632c09c0a0f422ca5.gif" | ||
| alt="Retro Computer Loading" | ||
| /> | ||
| </div> | ||
| </body> | ||
| </html> |
38 changes: 38 additions & 0 deletions
retro-loader/style.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| html, | ||
| body { | ||
| height: 100%; | ||
| margin: 0; | ||
| background-color: #f3a5f9; | ||
|
|
||
| /* Center content horizontally and vertically */ | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .loader-container { | ||
| background: white; | ||
| padding: 20px; | ||
| border-radius: 25px; | ||
|
|
||
| /* Shadow for depth */ | ||
| box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); | ||
|
|
||
| /* Smooth pop animation: scales up and down forever */ | ||
| animation: pop 1.5s ease-in-out infinite alternate; | ||
| } | ||
|
|
||
| img { | ||
| width: 220px; | ||
| height: auto; | ||
| border-radius: 12px; | ||
| } | ||
|
|
||
| @keyframes pop { | ||
| 0% { | ||
| transform: scale(1); | ||
| } | ||
| 100% { | ||
| transform: scale(1.05); | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.