Radar Scanner

Size
3,595 Kb
Views
40,480

How do I make an radar scanner?

It detected somthing there !. What is a radar scanner? How do you make a radar scanner? This script and codes were developed by AaronChuo (小狂) on 11 September 2022, Sunday.

Radar Scanner Previews

Radar Scanner - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Radar Scanner</title> <script src="https://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="panel"> <div class="scanner"></div> <ul class="something"> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ul>
</div> <script src='http://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js'></script>
</body>
</html>

Radar Scanner - Script Codes CSS Codes

body { background: #222;
}
.panel { position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; box-shadow: inset 0 0 0 99px #222, inset 0 0 0 100px rgba(0, 255, 0, 0.2), inset 0 0 0 199px #222, inset 0 0 0 200px rgba(0, 255, 0, 0.2), inset 0 0 0 299px #222, inset 0 0 0 300px rgba(0, 255, 0, 0.2); border-radius: 50%; -webkit-transform: rotate(0deg); transform: rotate(0deg); overflow: hidden; width: 800px; height: 800px; border: 1px solid #393;
}
.panel .scanner { -webkit-animation: scanning 6s infinite linear; animation: scanning 6s infinite linear; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjEuMCIgeDI9IjEuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwZmYwMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 0% 100%, 100% 0%, color-stop(0%, #00ff00), color-stop(50%, rgba(0, 0, 0, 0))); background-image: -webkit-linear-gradient(bottom, #00ff00 0%, rgba(0, 0, 0, 0) 50%); background-image: -webkit-linear-gradient(bottom left, #00ff00 0%, rgba(0, 0, 0, 0) 50%); background-image: linear-gradient(to top right, #00ff00 0%, rgba(0, 0, 0, 0) 50%); -webkit-transform-origin: top left; transform-origin: top left; position: absolute; top: 50%; left: 50%; width: 800px; height: 800px; border-left: 1px solid rgba(0, 255, 0, 0.1);
}
.panel:before { content: ''; display: block; position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: rgba(0, 255, 0, 0.2);
}
.panel:after { content: ''; display: block; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: rgba(0, 255, 0, 0.2);
}
.panel .something { list-style: none;
}
.panel .something li { -webkit-animation: target 6s infinite linear; animation: target 6s infinite linear; border-radius: 50%; box-shadow: 0 0 10px #AFA; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; display: block; position: absolute; width: 10px; height: 10px; background: #AFA;
}
.panel .something li:nth-child(1) { -webkit-animation-delay: 2250ms; animation-delay: 2250ms; top: 30%; left: 30%;
}
.panel .something li:nth-child(2) { -webkit-animation-delay: 3200ms; animation-delay: 3200ms; top: 15%; left: 60%;
}
.panel .something li:nth-child(3) { -webkit-animation-delay: 5050ms; animation-delay: 5050ms; top: 70%; left: 80%;
}
.panel .something li:nth-child(4) { -webkit-animation-delay: 1100ms; animation-delay: 1100ms; top: 60%; left: 20%;
}
.panel .something li:nth-child(5) { -webkit-animation-delay: 3000ms; animation-delay: 3000ms; top: 30%; left: 50%;
}
@-webkit-keyframes scanning { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes scanning { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-webkit-keyframes target { 1% { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; -webkit-transform: scale(2.5); transform: scale(2.5); } 3% { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; -webkit-transform: scale(1.5); transform: scale(1.5); } 60% { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; -webkit-transform: scale(0.6); transform: scale(0.6); }
}
@keyframes target { 1% { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; -webkit-transform: scale(2.5); transform: scale(2.5); } 3% { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; -webkit-transform: scale(1.5); transform: scale(1.5); } 60% { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; -webkit-transform: scale(0.6); transform: scale(0.6); }
}
Radar Scanner - Script Codes
Radar Scanner - Script Codes
Home Page Home
Developer AaronChuo (小狂)
Username aaronchuo
Uploaded September 11, 2022
Rating 4.5
Size 3,595 Kb
Views 40,480
Do you need developer help for Radar Scanner?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

AaronChuo (小狂) (aaronchuo) Script Codes
Create amazing marketing copy with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!