Skip to content

Commit

Permalink
I added Powered by animation (#2829)
Browse files Browse the repository at this point in the history
* Added some animations

* Added Powered by animation

* Added Powered by animation
  • Loading branch information
Emmykeys101 authored Oct 26, 2024
1 parent 3978837 commit ef9b346
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 9 deletions.
17 changes: 9 additions & 8 deletions Art/Emmykeys101-animeArt/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
</head>

<body>
<div class="wap">
<div class="wrap">
<div>
<div class="item item1">hacktoberfest</div>
<div class="item item2">hacktoberfest</div>
<div class="item item3">hacktoberfest</div>
<div class="item item4">hacktoberfest</div>
<div class="item item5">hacktoberfest</div>
<div class="item item6">hacktoberfest</div>
<div class="item item7">hacktoberfest</div>
<div class="item item8">hacktoberfest</div>
<div class="item item2">discord</div>
<div class="item item3">youtube</div>
<div class="item item4">ZTM</div>
<div class="item item5">css</div>
<div class="item item6">digital ocean</div>
<div class="item item7">github</div>
<div class="item item8">x</div>
</div>
</div>

Expand Down Expand Up @@ -67,6 +67,7 @@
<div class="ring"></div>
</div>
</div>
<h2 contenteditable="true">Powered by</h2>
</body>

</html>
49 changes: 48 additions & 1 deletion Art/Emmykeys101-animeArt/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: arial;
}

@keyframes scrollleft {
Expand All @@ -26,6 +29,7 @@ body {
position: relative;
width: 100%;
height: 100%;
left: 200px;
}

.star {
Expand Down Expand Up @@ -185,8 +189,9 @@ body {
display: flex;
justify-content: center;
align-items: center;
margin-left: -325px;
margin-left: -500px;
margin-top: 200px;
left: 260px;
}

.container .ring {
Expand Down Expand Up @@ -284,4 +289,46 @@ body {
0 0 0 20px #e41cf811,
0 0 20px #e41cf8,
0 0 50px #e41cf8;
}

h2 {
position: relative;
font-size: 2em;
letter-spacing: 15px;
color: #0e3742;
text-transform: uppercase;
width: 100%;
text-align: center;
-webkit-box-reflect: below 1px linear-gradient(transparent, #0004);
line-height: 0.70em;
outline: none;
animation: animate3 3s linear infinite;
top: 600px;
left: -420px;
white-space: nowrap;
}

@keyframes animate3 {

0%,
18%,
20%,
50.1%,
60%,
65.1%,
80%,
90.1%,
92% {
color: #0e3742;
box-shadow: none;
}

100% {
color: #fff;
text-shadow: 0 0 10px #03bcf4,
0 0 20px #03bcf4,
0 0 40px #03bcf4,
0 0 80px #03bcf4,
0 0 160px #03bcf4,
}
}

0 comments on commit ef9b346

Please sign in to comment.