Last active
November 26, 2015 21:57
-
-
Save calvinlai/ef5950f01034f5751908 to your computer and use it in GitHub Desktop.
ImageCapture
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>HTML Image/Camera upload test page</title> | |
</head> | |
<body> | |
<h1>HTML Image/Camera upload test page</h1> | |
<p>Find out more <a href="http://stackoverflow.com/questions/6336641/html5-camera-access-through-browser-in-ios">here</a></p> | |
<p> | |
<input type="file" capture="camera" accept="image/*" id="cameraInput" name="cameraInput"> | |
</p> | |
<script type="text/javascript"> | |
alert(navigator.userAgent) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment