Skip to content
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 submission, better late than never! #2419

Merged
merged 2 commits into from
Nov 1, 2023
Merged
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/MojoBoingo/hellothere.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions Art/MojoBoingo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="animation">
<div class="rotating-text">
<span>[ Hello</span>
<span class="dynamic-text"></span>
</div>
</div>
</body>
</html>
44 changes: 44 additions & 0 deletions Art/MojoBoingo/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: hidden;
background-color: orange; /*happy halloween*/
}

.animation {
font-size: 24px;
font-weight: bold;
white-space: nowrap;
background-color: #fff;
padding: 10px;
border-radius: 5px;
}

.rotating-text {
display: inline-block;
position: relative;
animation: rotateText 6s linear infinite;
}

.dynamic-text::before {
content: " world!";
animation: changeText 6s linear infinite;
}

@keyframes changeText {
0%, 25% {
content: "world! ]";
}
25.01%, 50% {
content: "user! ]";
}
50.01%, 75% {
content: "developer! ]";
}
75.01%, 100% {
content: "friend! ]";
}
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2822,6 +2822,13 @@ let cards = [
author: 'Bhavna',
githubLink: 'https://github.com/Bhavna2003'
},
{
artName: 'HelloThere',
pageLink: './Art/MojoBoingo/index.html',
imageLink: './Art/MojoBoingo/hellothere.gif',
author: 'Brady Ayres',
githubLink: 'https://github.com/MojoBoingo'
},
{
artName: 'Emerald',
pageLink: './Art/daniel-badura/emerald/emerald.html',
Expand Down