Can you access the mobile camera on a web system ( Não é app
) using javascript?
- What is the solution to this?
Can you access the mobile camera on a web system ( Não é app
) using javascript?
Here in this answer How to access a mobile camera from a web app?
On the iPhone iOS6 and Android ICS onwards, HTML5 has the following tag, which allows you to take photos of your device:
<input type="file" accept="image/*" capture="camera">
capture
can have values such as camera, camcorder, and audio.
html5 allows this using the
capture="camera"