来源: HTML5调用手机摄像拍照、相册等功能样式美化及demo – CSDN博客
最近用MUI做了个移动端项目,设计中涉及到调用手机摄像头拍照等功能需求,然而在PLUS环境下才能直接调用,这就让人有点头疼了,后经查询资料学习了解到有一个很简单的方法就是input:file标签,不需要复杂代码操作就能实现调用拍照、相册等功能。
//capture -- 设置选择需要调用的功能 //camera -- 照相机 //camcorder -- 摄像机 //microphone -- 录音 //accept -- 直接打开系统文件目录 <input type="file" accept="image/*" capture="camera"> <input type="file" accept="video/*" capture="camcorder"> <input type="file" accept="audio/*" capture="microphone"> //input:file标签还有一个属性multiple 用来支持多选 直接呼出原生选项 <input type="file" accept="image/*" multiple>
input [ type=file ] 按钮美化及上传demo
简单说就是:先将原按钮透明度opacity设为0,再外层用标签包裹,最终实现美化功能。
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title> <input[type=file]>上传demo </title> <style> .file { position: relative; display: inline-block; background: #D0EEFF; border: 1px solid #99D3F5; border-radius: 4px; padding: 4px 12px; overflow: hidden; color: #1E88C7; text-decoration: none; text-indent: 0; line-height: 20px; } .file input { position: absolute; font-size: 100px; right: 0; top: 0; opacity: 0; } .file:hover { background: #AADFFD; border-color: #78C3F3; color: #004974; text-decoration: none; } p.bottomTitlt{ margin: 0; letter-spacing: 2px; padding: 0; } </style> </head> <body> <a href="javaScript:;" class="file"> <p class="bottomTitlt">身份证正面</p> <img src="" alt=""/> <input type="file" placeholder="身份证正面" > </a> <p class="showFileName"></p> <script src="https://code.jquery.com/jquery-3.2.0.min.js"></script> <script type="text/javascript"> $(".file").on("change","input[type='file']",function(){ var filePath=$(this).val(); var fr= new FileReader(); var imgObj = this.files[0]; fr.readAsDataURL(imgObj); var obj = $(this).prev()[0]; if(filePath.indexOf("jpg")!=-1 || filePath.indexOf("JPG")!=-1 || filePath.indexOf("PNG")!=-1 || filePath.indexOf("png")!=-1){ var arr = filePath.split('\\'); var fileName = arr[arr.length-1]; $(this).parent().next().html(fileName); fr.onload=function( ){ obj.src=this.result; }; }else{ $(this).parent().next().html("您未上传文件,或者您上传文件类型有误!").css("color","red"); return false } }); </script> </body> </html>
input[type=file]样式美化后效果图:
图片上传后效果图:
HTML5调用手机摄像拍照、相册等功能样式美化及demo - CSDN博客
相关推荐
- 双列商品分类页面——uview+uniapp实现(单向联动+双向联动)_uview 购物菜单-CSDN博客
- vue中子组件的methods中获取到props中的值方法(vue 学习笔记)_vue 获取props的值-CSDN博客
- The data property “xxx“ is already declared as a prop. Use prop default value instead.-CSDN博客
- uni-app父子组件间的方法调用及传值_uniapp调用组件内部的方法-CSDN博客
- uni-app 页面顶部栏固定悬浮的 css 兼容方法 - DCloud问答
- uniapp 添加顶部搜索导航_typeerror: uni.onnavigationbarsearchinputclicked i-CSDN博客
- easycom组件冲突的解决办法-CSDN博客
- uni.switchTab()跳转不刷新页面问题_currentpage.onload is not a function-CSDN博客