文件名称:deviceDetector:网页的设备检测机制
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-19 08:22:32
JavaScript
设备检测器 设备检测机制将使用 javascript 替换 body dev-<> 类。 检测机制依赖于 window.matchMedia window.matchMedia 目前有5种类型的设备 [移动的] [肖像] [风景] [桌面] [宽的] var size = { w : 'wide' , d : 'desktop' , l : 'landscape' , p : 'potrait' , m : 'mobile' } ; if ( window . matchMedia ( "(max-width: 380px)" ) . matches ) { device = size . m ; } else if ( window . matchMedia ( "(max-width: 767px)" ) . matches ) { device =
【文件预览】:
deviceDetector-master
----device-detector.min.js(663B)
----index.html(478B)
----README.md(1KB)
----device-detector.js(1022B)