This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
DUT2PTUT/video.html

26 lines
687 B
HTML
Raw Normal View History

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf8" />
<link rel="stylesheet" type="text/css" href="style/styles.css">
<title>Acces camera</title>
<script type="text/javascript" >
2014-02-28 01:21:18 +00:00
$(document).ready( function() {
$.ajax({
type: "POST",
url:'/ajax',
contentType: "image/jpg",
success: function(data){
2014-02-28 01:21:18 +00:00
$('.image').html('<img src="data:image/png;base64,' + data + '" />'); }
});
2014-02-28 01:27:20 +00:00
)
2014-02-28 01:21:18 +00:00
}
</script>
</head>
<body>
<h2>Vue camera</h2>
<div id="image"></div>
</body>
</html>