手機網頁調用相機拍照或者圖庫

本文轉載於:猿2048網站手機網頁調用相機拍照或者圖庫php

<!DOCTYPE html>  
<html lang="en">  
<head>  
    <meta charset="UTF-8">  
    <title>HTML5頁面如何在手機端瀏覽器調用相機、相冊功能</title>  
</head>  
<body>  
  
<div>  
    <input type="file" accept="image/*" capture="camera">  
    <input type="file" accept="video/*" capture="camcorder">  
    <input type="file" accept="audio/*" capture="microphone">  
</div>  
  
</body>  
</html>

accept表示打開的系統文件目錄;
capture表示的是系統所捕獲的默認設備,camera:照相機;camcorder:攝像機;microphone:照相+攝像。html

若是不加上capture,則只會顯示相應的,例如上述三種依次是:拍照或圖庫,錄像或圖庫,錄像或拍照或圖庫,加上capture以後不會調用圖庫。瀏覽器

其中還有一個屬性multiple,支持多選,當支持多選時,就須要能夠選擇圖庫功能,則不須要加capture,ide

因此只用寫成:<input type="file" accept="image/*" multiple>就能夠,能夠在手機上測試一下。測試

參考連接:http://blog.csdn.net/zhihua_w/article/details/78125622網站

相關文章
相關標籤/搜索