Skip to content

Commit

Permalink
Testing glitch effect.
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonsRule10 committed Apr 2, 2024
1 parent ca84d13 commit a992a6b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file removed assets/deleted_audit.png
Binary file not shown.
Binary file removed assets/edited_audit.png
Binary file not shown.
Binary file removed assets/nick_audit.png
Binary file not shown.
Binary file removed assets/societyunites.png
Binary file not shown.
10 changes: 5 additions & 5 deletions glitchtest.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
width: 20px;
height: 100%;
background: linear-gradient(to bottom, #f00 0%, #00f 100%);
animation: glitch-anim 2s infinite linear alternate-reverse;
animation: glitch-anim 0.5s infinite linear alternate-reverse;
z-index: 1;
}

Expand All @@ -36,18 +36,18 @@

@keyframes glitch-anim {
0% {
transform: translateY(-5px);
transform: translateY(-2px);
}
100% {
transform: translateY(5px);
transform: translateY(2px);
}
}
</style>
</head>
<body>
<div class="content">
<div class="content">
<h1>Welcome to My Glitchy Website!</h1>
<p>This is some content on my glitchy website. Feel free to add more elements like images, paragraphs, lists, etc.</p>
</div>
</div>
</body>
</html>

0 comments on commit a992a6b

Please sign in to comment.