jquery实现支持移动端手机端拍照裁剪图片效果代码

代码语言:html

所属分类:上传

代码描述:jquery实现支持移动端手机端拍照裁剪图片效果代码

代码标签: 移动 手机 拍照 裁剪 图片 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang='en'>

<head>

<meta charset='UTF-8'>

<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telephone=no, email=no" />
<meta name="keywords" content="">
<meta name="description" content="">

<title>摄像头拍照</title>
<style>
body
{
   
padding: 10px;
   
margin: 0;
   
text-align: center;
}
#clipArea {
   
margin: 10px;
   
user-select: none;
   
overflow: hidden;
   
position: relative;
   
height: 300px;
}
#clipBtn {
   
margin-top:10px;
}
#view {
   
margin: 0 auto;
   
width: 200px;
   
height: 200px;
}
.correct:before {
   
content: '\2714';
   
color: #2121219e;
   
float: right;
   
font-size: 2rem;

}
.incorrect:before {
   
content: '\2716';
   
color: #ffffff;
   
float: left;
   
font-size: 2rem;
}
#image{
   
width: 100%;
 
   
padding: 5px 0 ;
   
background:#0099FF ;
   
color: white;
   
border-radius: 10px;
   
font-size: 16px;
   
cursor: pointer;
}
</style>
</head>
<body>
<input type="file" style="display: none" accept="image/*" capture="camera" id="face_file" multiple="multiple" ></input>
<div id="image" >请点击这里拍照</div&.........完整代码请登录后点击上方下载按钮下载查看

网友评论0