-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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"> | ||
</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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unaccepted picture for the contributionUnfortunatelly, we do not accept picture in our contributions. |
||
|
||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* styles.css */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Incorrect CSS filenamePlease 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;} | ||
} | ||
|
||
|
||
|
||
|
||
|
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.
Incorrect css reference
This currently refers to the correct file in your project - however
the css filename should not be
style.css
butstyles.css