Skip to content

Instantly share code, notes, and snippets.

@tobiashm
Last active January 18, 2017 07:43
Show Gist options
  • Save tobiashm/8f5ca82b326addbaeaf84187546177eb to your computer and use it in GitHub Desktop.
Save tobiashm/8f5ca82b326addbaeaf84187546177eb to your computer and use it in GitHub Desktop.
Untitled
@keyframes radar {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#wifi {
width: 100px; height: 100px;
border: double 100px;
border-radius: 200px;
border-color: black transparent transparent;
animation: radar 3s linear infinite;
}
#wifi::before {
content: '';
display: block;
width: 0; height: 0;
border: solid 20px black;
border-radius: 20px;
position: relative;
top: 30px; left: 30px;
}
<div id=wifi></div>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment