Skip to content

Instantly share code, notes, and snippets.

@levent1ozgur
Created April 15, 2022 20:50
Show Gist options
  • Select an option

  • Save levent1ozgur/2f9377b1b6d10dca61462a592373cce9 to your computer and use it in GitHub Desktop.

Select an option

Save levent1ozgur/2f9377b1b6d10dca61462a592373cce9 to your computer and use it in GitHub Desktop.
epileptic seizure
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
body {
animation: 500ms ease-in-out infinite color-change;
}
@keyframes color-change {
0% {
background-color: white;
}
20% {
background-color: black;
}
40% {
background-color: white;
}
60% {
background-color: black;
}
80% {
background-color: white;
}
100% {
background-color: black;
}
}
</style>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment