그누보드 모바일에서 스마트폰 카메라 사용하기
페이지 정보
작성자 관리자 (183.♡.9.21)
조회 1,653회
작성일 21-11-27 10:15(글 수정: 2023년 07월 22일)
본문
출처: https://sir.kr/g5_tip/17349
[code]
<script>
$(function(){
$('#camera').change(function(e){
$('#pic').attr('src', URL.createObjectURL(e.target.files[0]));
});
});
</script>
<input type="file" id="camera" name="camera" capture="camera" accept="image/*" />
<br/>
<img id="pic" style="width:100%;" />
[/code]
그누보드 관련된 게시글 보기
- 이전글
- 다음글
댓글목록
등록된 댓글이 없습니다.