-webkit-min-device-pixel-ratio的常见值对照

  • -webkit-min-device-pixel-ratio为1.0
  1. 所有非Retina的Mac
  2. 所有非Retina的iOS设备
  3. Acer Iconia A500
  4. Samsung Galaxy Tab 10.1
  5. Samsung Galaxy S
  • -webkit-min-device-pixel-ratio为1.3
  1. Google Nexus 7
  • -webkit-min-device-pixel-ratio为1.5
  1. Google Nexus S
  2. Samsung Galaxy S II
  3. HTC Desire
  4. HTC Desire HD
  5. HTC Incredible S
  6. HTC Velocity
  7. HTC Sensation
  • -webkit-min-device-pixel-ratio为2.0
  1. iPhone 4
  2. iPhone 4S
  3. iPhone 5
  4. iPad (3rd generation)
  5. iPad 4
  6. 所有Retina displays 的MAC
  7. Google Galaxy Nexus
  8. Google Nexus 4
  9. Google Nexus 10
  10. Samsung Galaxy S III
  11. Samsung Galaxy Note II
  12. Sony Xperia S
  13. HTC One X
时间: 2024-09-30 05:37:37

-webkit-min-device-pixel-ratio的常见值对照的相关文章

移动端 解决自适应 和 多种dpr (device pixel ratio) 的 [淘宝] 解决方案 lib-flexible

该方案 会 自动根据你的屏幕大小配置好 根节点的 font-size 大小 书写的时候可以用less 直接写 px, 编译会自动转换成rem单位 也可以用px2rem插件 对应@3dpr 的图, 可以用 data-dpr 判断 [data-dpr="3"] & { background-image: url("../img/@3x/[email protected]@version"); } http://www.cnblogs.com/lyzg/p/505

[Canvas] Make Canvas Responsive to Pixel Ratio

Canvas is great for high performance graphics rendering but by default the results look blocky on phones tablets and laptops with high pixel density or Retina displays. By using canvas width and height attributes and style props we can use window.dev

C#语言实现的简易数据键值对照字典类

最近遇到了一个场景,就是在数据库中没有数据字典的情况下,由C#程序临时维护一组类似数据字典功能的类.功能是可以通过键取出值,通过值取出对应的键(仅取第一个匹配的键),类要求具备一定的可扩展性,可以对一些控件(如ComboBox)进行数据源的初始化.因此我自己设计了一个模式,用于实现这个功能. 1.准备工作 建立一个Windows窗体应用程序,程序集名为DataDictTest,里面包含窗体FormMain 窗体FormMain中包括一个下拉菜单ComboBox,一个放置在DataGridView

题目1053:互换最大最小数------------------------max,m1=0,min,m2=0;这几个值定义的地方决定是否能ac

#include<iostream> using namespace std; int a[20]; int main() { int n; while(cin>>n) { int i,j,max,m1=0,min,m2=0;//如果将这几个值得定义写在while的上面,就会出错. for(i=0;i<n;i++) cin>>a[i]; max=a[0]; min=a[0]; for(i=0;i<n;i++) { if(max<a[i]) { max=

GetLastError()函数返回值对照列表

------------------------------------------------------------------------------------------------------ GetLastError()返回值列表: [0]-操作成功完成. [1]-功能错误. [2]-系统找不到指定的文件. [3]-系统找不到指定的路径. [4]-系统无法打开文件. [5]-拒绝访问. [6]-句柄无效. [7]-存储控制块被损坏. [8]-存储空间不足,无法处理此命令. [9]-

mongodb与SQL常见语句对照

inert into users value(3,5) db.users.insert({a:3,b:5})     select a,b from users db.users.find({}, {a:1,b:1}) select * from users db.users.find() select * from users where age=33 db.users.find({age:33}) select a,b from users where age=33 db.users.fin

常见移动设备尺寸对照

常见移动设备尺寸对照 系统类型 设备名称 长*宽 device pixel ratio ios iphone4  320 * 480 2 iphone5  320 * 568 2 iphone6  375 * 667 2 iphone6 plus  414 * 736 3 android      htc evo,touch HD desire,desire  320 * 533   1.5  htc one x,evo lte  360 * 640   2  htc sensation, ev

关于CSS中的PX值(像素)

场景: 人物:前端实习生「阿树」与 切图工程师「玉凤」事件:设计师出设计稿,前端实现页面 玉凤:树,设计稿发给你啦,差那么点像素,就叼死你┏(  ̄へ ̄)=?阿树:~(>_<)~毛问题噶啦~阿树:哇靠,为啥你给的设计稿是640px宽 ,iPhone 5不是320px宽吗???玉凤:A pixel is not a pixel is not a pixel, you know ?阿树:(#‵′),I know Google... 为什么会出现以上的情况,难道他们当中一位出错了,摆了这样的乌龙?事实

[Tools] Create your own mobile emulator device by using Chrome dev tool

Using the New Device Emulation Interface The Device Emulation interface changed a bit with the newer version of Chrome Dev Tools. Here are the instructions for emulating the required device characteristics in the new UI: Select Edit from the Responsi