美文网首页
html调用相机相册

html调用相机相册

作者: Gaochengxin | 来源:发表于2017-11-16 14:36 被阅读493次
    <!DOCTYPE html>  
    <html lang="en">  
      <head>  
          <meta charset="UTF-8">  
          <title>HTML5页面如何在手机端浏览器调用相机、相册功能</title>  
      </head>  
      <body>  
    
      <div>  
       <input type="file" accept="image/*" value="相机" capture="camera">  
       <input type="file" accept="video/*" value="录像"    capture="camcorder">  
       <input type="file" accept="audio/*" value="录音"    capture="microphone">  
      </div>  
        <script>
            判断ios,如果是ios就去掉capture属性.
    
           var file = document.querySelector('input');
        if (getIos()) {
            file.removeAttribute("capture");
        }
        function getIos() {
            var ua=navigator.userAgent.toLowerCase();
            if (ua.match(/iPhone\sOS/i) == "iphone os") {
                return true;
            } else {
                return false;
            }
        }
     </script>
      </body>  
      </html> 

    相关文章

      网友评论

          本文标题:html调用相机相册

          本文链接:https://www.haomeiwen.com/subject/kamlvxtx.html