-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What specs should we use for product images for a mobile centric e-commerce site? #42
Comments
@Cleop great question (as usual)! This is a tractable problem disguised as a complex one. My suggestion for how to approach this quest is to Google for the following: "most popular mobile screen sizes 2018"https://www.google.com/search?q=most+popular+mobile+screen+sizes+2018 Thankfully this data is easily/publicly available:
I would always re-size images into 3 sizes:
And then use the appropriate image in the UI depending on the Device User Agent.
|
Thanks for your help @nelsonic, these are the sizes of the devices you mentioned: iPhone SE: 640px (w), 1136px (h), 16:9 aspect ratio
I came across this useful article for switching between which image is served using |
@Cleop images on eCommerce websites are surprisingly one of the most challenging things. When in doubt always fire up your browser and navigate to Amazon! If Amazon is serving an image that is 880px wide for a mobile device As for the thumbnails (which is what you/we should be focussing on for the CS project), 300px wide is a good starting point for the "carousel". Remember that iPhoneX and Galaxy S6/7/8/9 will always "upscale" the image on the device, Again, if in doubt, test it on as many devices as you can get your hands on. |
Thanks @nelsonic I will start with 900px and test. I don't think it will be necessary to toggle between multiple image sizes for different mobile devices at this stage. Regarding thumbnails, at the moment we're stacking our carousel on mobile so that the images are exactly the same size as they display in other places on the site in mobile, so perhaps for now this isn't needed? |
@Cleop it all depends on how the images are being loaded on Mobile. |
I am working on a mobile-first project that is using image uploads for product images. In this instance the products are drinks (bottles). The client has asked what specs they should follow for providing the images for these products. We want to ensure images are of a good enough quality but that they also load quickly. So I want to know what specs I should request?
The text was updated successfully, but these errors were encountered: