-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
adding my animation to the project #2892
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
5fdb5c9
adding my animation to the project
Anorme dc4d484
addressed feedbacks
Anorme 9a00ec6
Changed title
Anorme af1a509
Delete changes file
Anorme 5922f69
Fixed the link href
Anorme d3c97e3
get latest files Merge branch 'loading' of github.com:Anorme/Animatio…
Anorme f9cdc11
Merge branch 'master' into loading
LaurelineP 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
This file contains 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,20 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Animation Nation challenge</title> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
</head> | ||
|
||
<body> | ||
<h1> Loading . . . <h1> | ||
|
||
<div class="wrapper"> | ||
<div id="box-1"></div> | ||
<div id="box-2"></div> | ||
<div id="box-3"></div> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains 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,4 @@ | ||
{ | ||
"artName": "loading", | ||
"githubHandle": "anorme" | ||
} |
This file contains 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,92 @@ | ||
:root { | ||
--color1: pink; | ||
--color2: beige; | ||
--color3: lightcyan; | ||
} | ||
p { | ||
margin: 0px; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
height: 20px; | ||
margin: 20px auto; | ||
color:lightsteelblue; | ||
} | ||
|
||
.wrapper { | ||
display: flex; | ||
margin:40px auto ; | ||
background-color: lightslategray; | ||
position: relative; | ||
height: 200px; | ||
justify-content: center; | ||
align-items: center; | ||
|
||
|
||
} | ||
|
||
#box-1, #box-2, #box-3 { | ||
width: 100px; | ||
height: 100px; | ||
margin: 20px auto; | ||
line-height:100px; | ||
text-align: center; | ||
animation-duration: 4s; | ||
animation-direction: reverse; | ||
animation-iteration-count: infinite; | ||
|
||
} | ||
|
||
#box-1 { | ||
background-color: pink; | ||
animation-name: change-color1; | ||
} | ||
|
||
#box-2 { | ||
background-color: beige; | ||
animation-name: change-color2; | ||
|
||
} | ||
|
||
#box-3 { | ||
background-color: lightcyan; | ||
animation-name: change-color3; | ||
|
||
} | ||
|
||
@keyframes change-color1 { | ||
0% {background-color: var(--color1); | ||
transform: scale(1.0);} | ||
25% {background-color: var(--color2); | ||
transform: scale(1.0);} | ||
50% {background-color: var(--color3); | ||
transform: scale(1.0);} | ||
75% {background-color: var(--color1); | ||
transform: scale(1.2);} | ||
100% {transform: scale(1.0);} | ||
} | ||
|
||
@keyframes change-color2 { | ||
0% {background-color: var(--color2); | ||
transform: scale(1.0);} | ||
25% {background-color: var(--color3); | ||
transform: scale(1.0);} | ||
50% {background-color: var(--color1); | ||
transform: scale(1.2);} | ||
75% {background-color: var(--color2); | ||
transform: scale(1.0);} | ||
100% {transform: scale(1.0);} | ||
} | ||
|
||
@keyframes change-color3 { | ||
0% {background-color: var(--color3); | ||
transform: scale(1.0)} | ||
25% {background-color: var(--color1); | ||
transform: scale(1.2);} | ||
50% {background-color: var(--color2); | ||
transform: scale(1.0)} | ||
75% {background-color: var(--color3); | ||
transform: scale(1.0)} | ||
100% {transform: scale(1.0)} | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inccorrect link css file ref
( you will need to update the name of your css file )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello and thanks for the correction I have amended the css name now