With a basic overlay technique , I did some testing and post my conclusions / opinions at the end.
As I do not have the source code, I have created the following code:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
* {
margin:0;
padding:0;
border:0;
max-width:100%;
border-spacing: 0;
}
html, body {
width: 100%;
height: 100%;
}
div.dvMae {
border: solid 1px red;
width: 90%;
min-height: 70%;
margin: 20px auto 0 auto;
padding: 50px;
background: url('img/teste1.png'); /* SOMENTE PARA TESTE / NO CÓDIGO ORIGINAL PODE APAGAR */
position: relative;
}
div.dvFilho {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: url('img/teste2.png'); /* CAMINHO DA IMAGEM COM OS TÚNEIS */
background-size: 100% auto;
background-repeat: no-repeat;
background-position:50% -2000px;
opacity: 0.5;
}
</style>
</head>
<body>
<div class="dvMae">
Fubá
<div class="dvFilho">
</div>
</div>
</body>
</html>
With this code, I came to this position:
NotethatIaddedabrownbackgroundtoyouroriginalimageforbetterdevelopmentvisualization.
Considerations:
- Theabovecodeisforinstructional/guidancepurposes.Adaptitaccordingtoyourneed;
- Theoriginalimageisat%pixelresolutionandonlycontainselementsfromthepixel
8000x14450
(vertically(6214
)).Onadevicewithascreen4k,theresolutionis%cos_de%pixels.Whichconcludesthatyourimageisabsurdlylarge. - Recreatetheimagewiththetunnelsconsideringthesizeofthetargettobeoverlapped.
- Considerdifferentresolutions,sinceyourpagecanbevisitedondifferentdevices.Doyouknowtheresponsivedesigner?
PS:Iwastryingtoaccessthisquestionthrough App Stack Exchange , on my cell phone with S. O. Android and the App could not handle the image, causing it to close instantly.