mirror of
https://github.com/System-End/site.git
synced 2026-04-19 16:28:21 +00:00
Make the 404 page glitch effect choppy with a non-continuous timing function (#1040)
Make the glitch effect choppy with a non-continuous timing function
This commit is contained in:
parent
30555edf69
commit
dfeac07930
1 changed files with 2 additions and 2 deletions
|
|
@ -160,12 +160,12 @@ const Blinking = styled(Heading)`
|
|||
&:after {
|
||||
left: 2px;
|
||||
text-shadow: -2px 0 ${theme.colors.red};
|
||||
animation: ${animation1} 2s infinite linear alternate-reverse;
|
||||
animation: ${animation1} 2s infinite steps(2, jump-end) alternate-reverse;
|
||||
}
|
||||
&:before {
|
||||
left: -2px;
|
||||
text-shadow: -2px 0 ${theme.colors.cyan};
|
||||
animation: ${animation2} 4s infinite linear alternate-reverse;
|
||||
animation: ${animation2} 4s infinite steps(2, jump-end) alternate-reverse;
|
||||
}
|
||||
`
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue