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

27 lines
744 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>
2014-02-28 01:34:08 +00:00
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" >
2014-02-28 01:21:18 +00:00
$(document).ready( function() {
$.ajax({
type: "POST",
url:'/ajax',
contentType: "image/jpeg",
success: function(data){
2014-02-28 02:09:00 +00:00
$('#image').html("<img src='data:image/jpeg;base64,"+data+"'>");?)}
2014-02-28 01:21:18 +00:00
});
2014-02-28 01:28:34 +00:00
})
</script>
</head>
<body>
<h2>Vue camera</h2>
2014-02-28 02:05:52 +00:00
<div id="image"></div>
</body>
</html>