html5调用手机摄像头

在一个响应式网站项目中需要用到 html5调用手机摄像头,找了很多资料,大都是 js调用api  然后怎样怎样,做了几个demo测试发现根本不行, 后来恍然大悟,用html5自带的 input file=""  ,纯html5,并且不涉及到js ,就可以实现。代码如下:

 type="file" accept="image/*" capture="camera">

 type="file" accept="video/*" capture="camcorder">

  type = "file"   accept = "audio/*"   capture = "microphone" >

capture表示,可以捕获到系统默认的设备,比如:camera--照相机;camcorder--摄像机;microphone--录音。
accept表示,直接打开系统文件目录。

其实html5的input:file标签还支持一个multiple属性,表示可以支持多选,如:
    type = "file"   accept = "image/*"   multiple >
加上这个multiple后,capture就没啥用了,因为multiple是专门yong用来支持多选的

你可能感兴趣的:(html5,html5)