H5调用手机摄像头,图片,视频等

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhangwenwu2/article/details/80916238

限制只能选择图片

<input type="file" accept="image/*">


限制只能选择视频

<input type="file" accept="video/*">


限制只能选择音频

<input type="file" accept="audio/*">


直接打开摄像头拍照

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


直接打开摄像头录像

<input type="file" accept="video/*" capture="camera">

猜你喜欢

转载自blog.csdn.net/zhangwenwu2/article/details/80916238