摘要:
1.圆角矩形-常规 body::-webkit-scrollbar { /*滚动条整体样式*/ width: 10px; /*高宽分别对应横竖滚动条的尺寸*/ height: 1px; } body::-webkit-scrollbar-thumb { /*滚动条里面小方块*/ border-rad 阅读全文
摘要:
1.调用安卓手机的摄像头(小米手机测试 可用,但是图库不能吊起来) <input type="file" id="file" multiple="multiple" capture="camera" accept="image/*" > 2.ios能吊起来摄像头,图库,安卓手机只能图库 <input 阅读全文
摘要:
原生JS document.body.clientWidth; //网页可见区域宽(body) document.body.clientHeight; //网页可见区域高(body) document.body.offsetWidth; //网页可见区域宽(body),包括border、margin 阅读全文