Skip to main content


slug: 2021DDay title: 253 author: Zhao chen author_url: https://github.com/zhaocchen tags: [周记] draft: false

description:#

  • 前端技术沙龙
  • 像素、像素密度、DPI、PPI、DPR
  • iphoneX系列适配问题

https://www.ui.cn/detail/416445.html https://segmentfault.com/a/1190000016534976

机型判断

/**
* 判断设备是否是iPhoneX
*/
export const isIphoneX = function isIphoneX() {
const iPhone = /iphone/gi.test(window.navigator.userAgent);
if (
iPhone &&
window.devicePixelRatio &&
window.devicePixelRatio === 3 &&
window.screen.width === 375 &&
window.screen.height === 812
) {
// iPhone X、iPhone XS
return true;
}
if (
iPhone &&
window.devicePixelRatio &&
window.devicePixelRatio === 3 &&
window.screen.width === 414 &&
window.screen.height === 896
) {
// iPhone XS Max
return true;
}
if (
iPhone &&
window.devicePixelRatio &&
window.devicePixelRatio === 2 &&
window.screen.width === 414 &&
window.screen.height === 896
) {
// iPhone XR
return true;
}
if (iPhone && window.screen.width === 390 && window.screen.height === 844) {
// iPhone 12/ iPhone 12 Pro
return true;
}
if (iPhone && window.screen.width === 428 && window.screen.height === 926) {
// iPhone 12 Pro Max
return true;
}
return false;
};
  • safari technology preview 调试
  • _.pick 过滤key
  • 时间函数: dayjs
  • git可视工具, soucetree
  • h5键盘兼容性

https://juejin.cn/post/6844903780731846663

  • babel1