Skip to content

Commit

Permalink
Merge pull request #655 from Milind-Palaria/master
Browse files Browse the repository at this point in the history
Animation Added
  • Loading branch information
NiallEccles authored Oct 10, 2023
2 parents aef3177 + 7118d82 commit 602f1e4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions animations.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ window.animations = [
{ name: 'firer', author: 'kalamell' },
{ name: 'firetext', author: 'KrindgesJuliano' },
{ name: 'flash', author: 'haych8' },
{ name: 'flare',author: 'milind-palaria' },
{ name: 'flashbeam', author: 'hrshk15' },
{ name: 'flashingtext', author: 'Jaammeesss' },
{ name: 'flashtext', author: 'cTahirih' },
Expand Down
28 changes: 28 additions & 0 deletions animations/flare.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');


.flare {
font-family: 'Staatliches', cursive;
animation: flare 2s ease-in-out infinite;
transition: 0.6;
}

@keyframes flare {
0%,
100% {
text-shadow: 0 0 1vw #a024f8, 0 0 3vw #f708d3, 0 0 10vw #81120f,
0 0 10vw #0f1786, 0 0 0.4vw #c221c2, 0.4vw 0.4vw 0.1vw #1e5ab4;
color: #1693c4;
}

50% {
text-shadow: 3px -3px 0 #a024f8, -2px 2px 0 #f708d3;
color:#0f1786;
}
25% {
text-shadow: 1.5px 1.5px 0 #f708d3,
-1.5px -1.5px 0 #a024f8;
}
}

0 comments on commit 602f1e4

Please sign in to comment.