huyue-tools-systeminf
v1.0.31
Published
js 得到当前的系统的某些信息,以及相应的回调函数
Downloads
2
Readme
使用说明
js 得到当前的系统的某些信息
- 安装
npm i huyue-tools-systeminf --save
- 引入
import hySystemInfo from 'huyue-tools-systeminf'
- 使用
可以是字符串,对象,数组;
// 判断是否打开了falsh,pc端使用
hySystemInfo.isFlashOpen();
//判断是不是ios系统
hySystemInfo.isIos()
//判断是不是安卓系统
hySystemInfo.isAz()
//
/**
* 实时判断手机横竖屏
* @param {[fun]} hpFun [横屏的回调函数]
* @param {[fun]} spFun [竖屏的回调函数]
* @param {noinit} true 是不初始化, 不传或者传falsh 为默认先判断一次是否横竖屏,然后回调一次
* @param {isMonitor} true 是禁止实时监听,不会在屏幕变化时重新触发;
*/
hySystemInfo.getFacilityAcross(spFun,hpFun,noinit,isMonitor)
判断键盘的弹起事件 hySystemInfo.getKeyUp();
/**
* 判断键盘的弹起事件
* @param {键盘的弹起的回调函数} upFunBack
* @param {键盘的收起的回调函数} dowFunBack
*/
hySystemInfo.getKeyUp(function(){},function(){});
- 更新
npm update huyue-tools-systeminfo