Dragonball Dragon Radar

Size
2,157 Kb
Views
58,696

How do I make an dragonball dragon radar?

Bulma's Dragon Radar from the Dragonball series made with CSS, and some JQuery for the grid and balls.. What is a dragonball dragon radar? How do you make a dragonball dragon radar? This script and codes were developed by Douglas Glover on 17 October 2022, Monday.

Dragonball Dragon Radar Previews

Dragonball Dragon Radar - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Dragonball Dragon Radar</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="container"> <div class="radar"> <div class="grid"></div> </div>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Dragonball Dragon Radar - Script Codes CSS Codes

.container{ position: absolute; left: 30%; top: 30%;
}
.radar{ height: 400px; width: 400px; background: darkgreen; border-radius: 100%; overflow: hidden; border: 30px solid lightgray; box-shadow: 5px 5px 5px #999;
}
.radar:before{ content: ''; z-index: -1; position: absolute; top: -50px; left: 180px; height: 100px; width: 100px; background: lightgray; box-shadow: 5px 5px 5px #999;
}
.radar:after{ content: ''; position: absolute; top: -80px; left: 155px; height: 50px; width: 150px; background: lightgray; box-shadow: 5px 5px 5px #999;
}
.grid{ width: 110%;
}
.grid-inner{ height: 30px; width: 30px; border: 1px solid white; position: relative; float: left; margin: -1px 0 0 -1px;
}
.ball{ height: 50px; width: 50px; border-radius: 100%; background: orange; animation: pulsate 2s infinite linear; -webkit-animation: pulsate 2s infinite linear;
}
@keyframes pulsate { 0% { box-shadow: 0px 0px 0px red; } 100% { box-shadow: 0px 0px 300px red; }
}
@-webkit-keyframes pulsate { 0% { box-shadow: 0px 0px 0px red; } 100% { box-shadow: 0px 0px 300px red; }
}

Dragonball Dragon Radar - Script Codes JS Codes

var ballCount = 1;
for(var i = 0; i < 200; i++) { $("<div class='grid-inner' id='" + i + "'></div>").appendTo(".grid"); if(i == 45 || i == 100 || i == 82){ $("<div class='ball' id='ball" + ballCount + "'></div>").appendTo("#" + i + ""); ballCount++; }
}
Dragonball Dragon Radar - Script Codes
Dragonball Dragon Radar - Script Codes
Home Page Home
Developer Douglas Glover
Username DouglasGlover
Uploaded October 17, 2022
Rating 3
Size 2,157 Kb
Views 58,696
Do you need developer help for Dragonball Dragon Radar?

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!

Douglas Glover (DouglasGlover) Script Codes
Create amazing art & images 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!