பூமியிலேயே ஒரு தாவரத்தை போல வளரும் உலோகம்
* {box-sizing: border-box;}
.img-magnifier-container {
position:relative;
}
.img-magnifier-glass {
position: absolute;
border: 3px solid #000;
border-radius: 50%;
cursor: none;
/*Set the size of the magnifier glass:*/
width: 100px;
height: 100px;
}
function magnify(imgID, zoom) {
var img, glass, w, h, bw;
img = document.getElementById(imgID);
...