Skip to content

Instantly share code, notes, and snippets.

@flashwave
Created December 10, 2018 16:46
Show Gist options
  • Save flashwave/6315111e544a5d44c68f1764c0ce0131 to your computer and use it in GitHub Desktop.
Save flashwave/6315111e544a5d44c68f1764c0ce0131 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>pulse</title>
<style>
@keyframes glow-pulse {
0% { opacity: 0.5; }
60% { opacity: 1.0; }
100% { opacity: 0.5; }
}
.pulse {
width: 100px;
height: 100px;
border-radius: 100%;
background-color: #609;
animation: glow-pulse 1s infinite;
}
</style>
</head>
<body>
<div class="pulse"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment