使用带有PhoneGap的设备摄像头
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用带有PhoneGap的设备摄像头相关的知识,希望对你有一定的参考价值。
$( '#camera' ).bind( 'touchstart', function() { $( this ).attr( 'src', 'assets/camera.down.png' ); navigator.camera.getPicture( function( data ) { $( '#photo' ) .attr( 'src', 'data:image/jpeg;base64,' + data ) .css( 'visibility', 'visible' ); $( '#camera' ).attr( 'src', 'assets/camera.up.png' ); }, function( error ) { console.log( 'Error' ); }, { destinationType: Camera.DestinationType.DATA_URL, sourceType: Camera.PictureSourceType.CAMERA, allowEdit: false, targetWidth: 260, targetHeight: 435 } ); } );
以上是关于使用带有PhoneGap的设备摄像头的主要内容,如果未能解决你的问题,请参考以下文章