加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
work.html 3.25 KB
一键复制 编辑 原始数据 按行查看 历史
小伟同学 提交于 2022-03-24 18:00 . 03
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html,
body {
width: 100%;
height: 100%;
}
#container {
width: 500px;
height: 300px;
border: 1px dashed #fff;
background-color: #eee;
margin: 20px;
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#container img {
width: 100px;
height: 100px;
}
#container span {
color: #999;
letter-spacing: 2px;
font-size: 12px;
}
.file-item {
width: 480px;
margin: 20px;
overflow: hidden;
padding: 10px;
border: 1px dashed #ccc;
border-radius: 10px;
}
.file-item img {
width: 20px;
height: 20px;
}
.file-item span {
margin-left: 10px;
}
.file-item span:hover {
cursor: pointer;
color: #0451AD;
}
.file-icon {
float: left;
}
.close {
float: right;
cursor: pointer;
}
#shade {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.3);
display: none;
}
.content {
width: 500px;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-250px) translateY(-250px);
}
.shade-title {
width: 100%;
padding: 10px 20px;
background-color: #fff;
border-radius: 10px 10px 0 0;
overflow: hidden;
border-bottom: 1px solid #ccc;
}
.shade-title img {
width: 20px;
height: 20px;
float: right;
}
.shade-content {
width: 100%;
padding: 10px 20px;
background-color: #fff;
min-height: 300px;
text-align: center;
}
</style>
</head>
<body>
<div id="container">
<img src="./imgs/文件夹.png">
<span>*拖动需要上传的文本文档或图片至此区域</span>
</div>
<!-- 上传的文件列表 -->
<div id="file">
</div>
<!-- 遮罩层 -->
<div id="shade">
<div class="content">
<div class="shade-title">
<span id="file-name"></span>
<img onclick="closeShade()" src="./imgs/关闭.png">
</div>
<div class="shade-content"></div>
</div>
</div>
</body>
<script>
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化