1 Star 0 Fork 0

littleboyck/Simple-Crop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
template-1.css 4.21 KB
一键复制 编辑 原始数据 按行查看 历史
liyang 提交于 2021-03-14 15:38 . feat: 裁剪框鼠标拖拽样式
@font-face {
font-family: DINCondensed-Bold;
src: url(./font/DIN_Condensed_Bold.ttf);
}
.crop-whole-cover {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.crop-component {
width: 700px;
background: #ffffff;
-webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.22);
box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.22);
border-radius: 4px;
font-size: 0;
position: relative;
}
/* 标题 */
.crop-component .crop-title {
margin: 0;
padding: 0;
display: inline-block;
width: 100%;
line-height: 40px;
height: 40px;
text-align: center;
font-size: 16px;
color: #222222;
position: relative;
}
/* 画布 */
.crop-component .crop-mask {
width: 100%;
height: 500px;
background-image: url(./img/mosaic-bk.jpg);
background-repeat: repeat;
position: relative;
overflow: hidden;
}
.crop-component .crop-cover {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
cursor: move;
}
/* 旋转 */
.crop-component .crop-rotate {
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 474px;
width: 92%;
height: 66px;
margin: auto;
overflow: hidden;
-webkit-mask-image: linear-gradient(90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.64) 50%,
rgba(255, 255, 255, 0) 100%);
mask-image: linear-gradient(90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.64) 50%,
rgba(255, 255, 255, 0) 100%);
}
.crop-component .crop-rotate .current {
margin: auto;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 9px solid #d8d8d8;
border-radius: 1px;
}
.crop-component .crop-rotate .lineation {
height: 50px;
display: flex;
justify-content: flex-start;
align-items: center;
font-size: 0;
margin: 0;
padding: 0 0 8px 0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.crop-component .crop-rotate .lineation li {
flex: 1;
height: 100%;
display: inline-block;
}
.crop-component .crop-rotate .lineation .number {
width: 100%;
height: 32px;
font-size: 16px;
line-height: 36px;
text-align: center;
font-family: DINCondensed-Bold;
overflow: hidden;
color: #fff;
}
.crop-component .crop-rotate .lineation .bg {
width: 100%;
height: 18px;
background-image: url(./img/lineation-bg.png);
background-size: contain;
background-repeat: no-repeat;
}
/* 功能按钮 */
.crop-component .crop-btns {
width: 100%;
height: 90px;
font-size: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
/* 主轴对齐方式 */
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
/* 交叉轴对齐方式 */
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.crop-component .crop-btns .crop-btn,
.crop-component .crop-btns .crop-reset {
width: 160px;
height: 40px;
border: 1px solid #222222;
border-radius: 48px;
cursor: pointer;
position: relative;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.crop-component .crop-btns .crop-reset {
background-color: #fff;
position: relative;
}
.crop-component .crop-btns .crop-reset:after {
content: "重置图片";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
font-size: 18px;
color: #222;
text-align: center;
line-height: 40px;
}
.crop-component .crop-btns .crop-btn {
position: relative;
background-color: #000;
margin-left: 36px;
}
.crop-component .crop-btns .crop-btn:after {
text-align: center;
color: #fff;
line-height: 40px;
font-size: 18px;
content: "确定裁剪";
position: absolute;
display: inline-block;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.crop-component .crop-btns .crop-close {
display: inline-block;
width: 18px;
height: 18px;
position: absolute;
right: 20px;
top: 11px;
background-image: url(./img/crop-close.svg);
background-size: 100% 100%;
cursor: pointer;
border: none;
background-color:#fff;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/littleboyck/Simple-Crop.git
git@gitee.com:littleboyck/Simple-Crop.git
littleboyck
Simple-Crop
Simple-Crop
master

搜索帮助