比如想要录制一段视频,可以这么写: <input type="file" accept="video/*" capture />
点击之后直接打开摄像头进行拍摄,而不是弹起文件选择。 `capture` 属性演示 如果没有这个 同样,对于拍照的情况也非常方便了,可以这么写: <input type="file" accept="image/*" capture="camera" />
<!-- or -->
<input type="file" accept="image/*;capture=camera"/>
更多示例可参见 W3C 文档中示例部分。 浏览器兼容性从 Can I Use - HTML Media Capture 的统计来看,支持得还不是很好。但尝试后发现 iOS 只能录制视频,即使指定 相关资源 |
转载于:https://www.cnblogs.com/Wayou/p/html_capture_attribute.html