Skip to content

adding my art to the project #2939

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
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file added Art/ROBO CSS Animation/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions Art/ROBO CSS Animation/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Mrs. Roboto - ROBO CSS Animation</title>
<link rel="stylesheet" type="text/css" href="style.css">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incorrect css reference

This currently refers to the correct file in your project - however
the css filename should not be style.css but styles.css

  • Please adjust the name of your CSS file
  • Then update this line with correct filename.

</head>
<body>
<h1> CSS ROBO Animation </h1>
<p> Mrs. Roboto has created an animation using only HTML & CSS. Enjoy! </p>
<div class="image-container">
<img src="1.png" alt="" class="animated-image">
</div>
Comment on lines +12 to +14
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unaccepted picture for the contribution

Unfortunatelly, we do not accept picture in our contributions.
Please find another way to display this picture other than uploading this in the project as a file.


</body>
</html>
Empty file.
27 changes: 27 additions & 0 deletions Art/ROBO CSS Animation/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/* styles.css */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incorrect CSS filename

Please correct the filename according to the given guidelines in the README.md file

.image-container {
width: 500px;
height: 500px;
overflow: hidden;
position: relative;
}

.animated-image {
width: 50%;
height: auto;
position: absolute;
animation: moveImage 5s infinite alternate;
}

@keyframes moveImage {
0% {top: 0px; left: 0px; background: #FD3CF9;}
25% {top: 0px; left: 100px; background: #09FFFF;}
50% {top: 100px; left: 100px; background: #3C3C3C;}
75% {top: 100px; left: 0px; background: #573CFD;}
100% {top: 0px; left: 0px; background: #49FD3C;}
}





8 changes: 8 additions & 0 deletions public/cards.json
Original file line number Diff line number Diff line change
Expand Up @@ -1438,4 +1438,12 @@
"imageLink": "./Art/vridhichaudhary-waveAnimation/icon.png",
"projectPath": "Art/vridhichaudhary-waveAnimation"
}
{
"author": "Mrs. Roboto (Autumn Fawcett)",
"artName": "ROBO CSS Animation",
"githubLink": "https://github.com/AutumnFawcett",
"pageLink": "./Art/ROBO-CSS-Animaiton/index.html",
"imageLink": "./Art/ROBO-CSS-Animaiton/1.png",
"projectPath": "Art/ROBO-CSS-Animaiton"
}
]