Skip to content

Commit

Permalink
adding my submission, better late than never! (#2419)
Browse files Browse the repository at this point in the history
Co-authored-by: Sophia Brandt <16630701+sophiabrandt@users.noreply.github.com>
  • Loading branch information
MojoBoingo and sophiabrandt authored Nov 1, 2023
1 parent d5f53ad commit 81db056
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 0 deletions.
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

0 comments on commit 81db056

Please sign in to comment.