photobooth.js jquery

时间:2023-12-22 22:49:08
	<div id="example" class="photobooth" style="width:758px;height:400px"></div>

			<div id="gallery"></div>
<script> $('#example').photobooth().on("image",function( event, dataUrl ){
$( "#gallery" ).append( '<img src="' + dataUrl + '" >');
console.log(dataUrl)
});
</script>