HTML5 CSS3 经典案例:无插件拖拽上传图片
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>拖拽上传图片</title>
<style>
#drop_area {
width: 300px;
height: 160px;
border: 2px dashed #aaa;
border-radius: 5px;
margin-bottom: 20px;
text-align: center;
line-height: 160px;
font-size: 24px;
color: #555;
position: relative;
}
#preview {
width: 300px;
height: 160px;
border: 1px solid #ddd;
margin-bottom: 10px;
display: none;
position: relative;
overflow: hidden;
}
#preview img {
position: absolute;
max-width: 300px;
max-height: 160px;
top: 0;
left: 50%;
transform: translateX(-50%);
}
</style>
</head>
<body>
<div id="drop_area">将图片拖拽到此处</div>
<div id="preview"></div>
<script>
// 拖拽上传图片逻辑
</script>
</body>
</html>
这个代码实例提供了一个简单的拖拽上传图片的界面,并定义了基本的CSS样式。用户可以将图片拖拽到指定区域,图片会被预览,并且支持批量上传。实际的拖拽上传逻辑需要结合JavaScript代码实现,这部分代码在提供的代码实例中已经省略,需要开发者根据具体需求实现。
评论已关闭