World Map Navigation

Developer
Size
2,393 Kb
Views
8,096

How do I make an world map navigation?

World Map on CSS3 resize images property. What is a world map navigation? How do you make a world map navigation? This script and codes were developed by WebSonick on 15 October 2022, Saturday.

World Map Navigation Previews

World Map Navigation - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>World Map Navigation</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="box1">https://codepen.io/WebSonick/full/mbceo</div>
<div class="circle" ><img src="http://upload.wikimedia.org/wikipedia/commons/2/29/North_America_satellite_orthographic.jpg" alt=""></div>
<div class="circle1"><img src="http://citadel.sjfc.edu/students/jmm02377/e-port/south-america-image.jpg" alt=""></div>
<div class="circle2"><img src="http://upload.wikimedia.org/wikipedia/en/2/21/Africa_satellite_orthographic.jpg" alt=""></div>
<div class="circle3"><img src="http://upload.wikimedia.org/wikipedia/commons/4/43/Two-point-equidistant-asia.jpg" alt=""></div>
<div class="circle4"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Australia_satellite_plane.jpg/729px-Australia_satellite_plane.jpg" alt=""></div>
<div class="circle5"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Antarctica_6400px_from_Blue_Marble.jpg/600px-Antarctica_6400px_from_Blue_Marble.jpg" alt=""></div>
</body>
</html>

World Map Navigation - Script Codes CSS Codes

body {
background:url(http://images4.wikia.nocookie.net/__cb20130223055258/currencies/images/thumb/e/ec/World_map_blank_without_borders.svg/1280px-World_map_blank_without_borders.svg.png) no-repeat;
margin-top:0px;
padding:0px;
background-attachment: fixed;
background-size:1600px 800px;
}
/*Northern America*/
.circle { position:absolute; top:180px; left:300px; width: 35px; height: 35px; overflow: hidden; border-radius: 300px; border: 4px solid #1b1b1b; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
.circle:hover { width: 250px; height: 250px;
}
.circle:hover img { margin: 0px; width:100%;
}
.circle img { margin: -50px 0px 0 -100px; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
/*Southern America*/
.circle1 { position:absolute; top:420px; left:480px; width: 35px; height: 35px; overflow: hidden; border-radius: 300px; border: 4px solid #1b1b1b; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
.circle1:hover { width: 250px; height: 250px;
}
.circle1:hover img { margin: 0px; width:100%;
}
.circle1 img { margin: -50px 0px 0 -100px; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
/*Africa*/
.circle2 { position:absolute; top:320px; left:830px; width: 35px; height: 35px; overflow: hidden; border-radius: 300px; border: 4px solid #1b1b1b; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
.circle2:hover { width: 250px; height: 250px;
}
.circle2:hover img { margin: 0px; width:100%;
}
.circle2 img { margin: -50px 0px 0 -100px; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
/*Eurasia*/
.circle3 { position:absolute; top:170px; left:1130px; width: 35px; height: 35px; overflow: hidden; border-radius: 300px; border: 4px solid #1b1b1b; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
.circle3:hover { width: 250px; height: 250px;
}
.circle3:hover img { margin: 0px; width:100%; height:100%;
}
.circle3 img { margin: -50px 0px 0 -100px; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
/*Australia*/
.circle4 { position:absolute; top:460px; right:230px; width: 35px; height: 35px; overflow: hidden; border-radius: 300px; border: 4px solid #1b1b1b; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
.circle4:hover { width: 250px; height: 250px;
}
.circle4:hover img { margin: 0px; width:100%; height:100%;
}
.circle4 img { margin: -50px 0px 0 -100px; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
/*Antarctida*/
.circle5 { position:absolute; bottom:20px; left:900px; width: 35px; height: 35px; overflow: hidden; border-radius: 300px; border: 4px solid #1b1b1b; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
.circle5:hover { width: 250px; height: 250px;
}
.circle5:hover img { margin: 0px; width:100%; height:100%;
}
.circle5 img { margin: -50px 0px 0 -100px; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
/*Recomendation*/
a{ text-decoration:none;
}
#box1 {
background:lightyellow;
width:240px;
height:36px;
text-align:center;
box-shadow: 0px 0px 15px 2px grey inset;;
transition:all 0.5s ease-in-out; -moz-transition:color 0.5s ease-in-out; -webkit-transition:color 0.5s ease-in-out; -o-transition:color 0.5s ease-in-out; border-radius:10px; color:grey; font-family:Impact; font-size:15px; overflow:hidden;
}
#box1:hover {box-shadow: 0px 0px 20px 2px grey inset;color:black;
cursor:pointer;}
#box1:active {box-shadow: 0px 2px 20px 2px #5E5E5E inset;
font-size:22px;}
World Map Navigation - Script Codes
World Map Navigation - Script Codes
Home Page Home
Developer WebSonick
Username WebSonick
Uploaded October 15, 2022
Rating 3
Size 2,393 Kb
Views 8,096
Do you need developer help for World Map Navigation?

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!

WebSonick (WebSonick) Script Codes
Create amazing blog posts 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!