纯html5调用手机摄像头
纯html5,并且不涉及js,实现调用手机摄像头
<!--打开相机-->
<input type="file" accept="image/*" capture="camera">
<!--打开摄像-->
<input type="file" accept="video/*" capture="camcorder">
<!--打开录音-->
<input type="file" accept="audio/*" capture="microphone">
<!--可以支持多选-->
<input type="file" accept="image/*" multiple>
accept
表示直接打开系统文件目录。
capture
表示可以捕获到系统默认的设备。
multiple
表示可以支持多选,如:
加上这个multiple
后,capture
就没啥用了,因为multiple
是专门用来支持多选的。