image size on mobile
Greetings Coding experts, thanks for looking at this post.
I’m trying to make the size of a coin appear its actual size on mobile, specifically I been testing with iphone6 plus.
The size of the coin image is 2000px. The coin's actual dem's are 146px or 38mm; easily would fit on a iphone screen.
I specified 146px length and width properties on the image tag. The image is accurate on desktop and ipads, but it scales down on iphone.
I have tried different containers, no containers, using vw and vh. I can not get the image to show its real size on iphone.
In my last attemp I scaled down the original image 146px. (attached) Iphone shrinks this image and of course it is very dim.
The meta tag is in the head. Removing it increases the shrinking tremendously.
I'm trying to avoid media queries, calculating for every device ect.
Here is the file-code which I'm using for testing and is on server listed below code
Thanks for your suggestions…jw
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Untitled Document</title>
</head>
<body>
<img src="1921Morgan.png" width="146px" height="146px" alt=""/>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="js/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>
HTML file on a remote server and the image below which is actual size:
http://collection.fairwaysit.com/testpage.html
image:
