博客列表 >css 上传图片

css 上传图片

谦谦允水的博客
谦谦允水的博客原创
2018年03月22日 22:37:281026浏览

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>上传照片</title>
	<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
</head>
<style>
	.photo{width: 300px;height: 300px;border-radius: 50%;border:1px solid #ccc;margin: 0 auto;margin-top: 100px;position: relative;overflow: hidden;}
	.photo:hover{background: #fff266;border:0 solid #fff;}
	#file{position: absolute;width: 100%;height: 100%;opacity: 0;z-index: 999;cursor: pointer;}
	.photo p{line-height: 250px;color: #666;font-size: 28px;position: absolute;z-index: 99;left: 80px;}
	#img{width:310;height: 310px;}
</style>
<body>
	<div class="photo">
		<p>拍照或上传</p>
		<input type="file" accept="" id="file">
		<img src=""  id="img" alt="">
		
	</div>
</body>
<script>
	$("#file").change(function(e){
		var files=e.target.files[0];
		if(!/image\/\w+/.test(files.type)){
			alert("请上传图片");
			return;
		}
		var reader=new FileReader();
		reader.readAsDataURL(files);
		reader.onload=function(){
			var url=this.result;
			$("#img").attr('src',url);
			$(".photo>p").html(' ');
		}
		console.log(e.target.files[0])
	})
</script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


上一条:3月22日 作业下一条:3.20
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议