html5调用手机相机
只需要这么一条简单的代码,在手机浏览器点击就可以打开相机了。
<input type="file" accept="image/*" capture="camera">
capture
是什么?其实就是对打开方式的设置。
<!-- capture=camcorder,调用手机摄像功能 --> <input type="file" accept="video/*" capture="camcorder"> <!-- capture=microphone,调用手机录音功能 --> <input type="file" accept="audio/*" capture="microphone">