848 lines
24 KiB
Vue
848 lines
24 KiB
Vue
<template>
|
|
<div>
|
|
<a-modal
|
|
class="designOpenrtion_modal"
|
|
v-model:visible="designOpenrtion"
|
|
:footer="null"
|
|
width="80%"
|
|
:maskClosable="false"
|
|
:centered="true"
|
|
:closable="false"
|
|
:mask="false"
|
|
>
|
|
<div class="designOpenrtion_content">
|
|
<div class="design_title_text">
|
|
<div>Placement</div>
|
|
</div>
|
|
<div class="design_closeIcon" @click.stop="closeModal()">
|
|
<i class="fi fi-rr-cross-small"></i>
|
|
</div>
|
|
<div class="designOpenrtion_open">
|
|
<!-- -->
|
|
<div class="print_right">
|
|
<div class="habit_Overal_Single">
|
|
<div
|
|
class="habit_Overal_Single_text"
|
|
:class="{ active: !overallSingle }"
|
|
>
|
|
Overal
|
|
</div>
|
|
<a-switch v-model:checked="overallSingle" @change="setOveralSingle"/>
|
|
<div
|
|
class="habit_Overal_Single_text"
|
|
:class="{ active: overallSingle }"
|
|
>
|
|
Single
|
|
</div>
|
|
</div>
|
|
<div class="habit_System_Designer">
|
|
<a-slider id="system_silder"
|
|
v-model:value="systemDesignerPercentage"
|
|
@afterChange="systemDesigner"
|
|
:tip-formatter="formatter"
|
|
>
|
|
</a-slider>
|
|
</div>
|
|
<div v-show="current.printObject.ifSingle" @click="random" class="button_second">Random</div>
|
|
<div v-show="current.printObject.ifSingle" class="print_input">
|
|
<input class="search_input" placeholder="Please input" type="Number" v-model="printAmount" @input="setprintAmount">
|
|
</div>
|
|
<div class="designOpenrtion_nav">
|
|
<div class="designOpenrtion_single" v-show="current.printObject.ifSingle" v-for="item,index in designOpenrtionList" :key="item" :class="{active:printStyleList[index].designOpenrtionBtn}">
|
|
<img :src="item.url" @click="setpitch(item,index)">
|
|
</div>
|
|
<div class="designOpenrtion_overall" v-show="!current.printObject.ifSingle">
|
|
<img :src="designOpenrtionList[0].url">
|
|
</div>
|
|
</div>
|
|
<div class="subitOkPreviewBtn" @click.stop="setPreview">preview</div>
|
|
</div>
|
|
</div>
|
|
<div class="designOpenrtion_centent" id="designOpenrtionCentent">
|
|
<div class="designOpenrtion_imgMask" :style="sketch">
|
|
<div class="designOpenrtion_print">
|
|
<div
|
|
v-for="item,index in designOpenrtionList"
|
|
:key="item"
|
|
:style="[printStyleList[index].style]"
|
|
@mousedown.stop="itemMoveMousedown(index,$event)"
|
|
class="modal_imgItem"
|
|
@click="setpitch(item,index)" ref="content" >
|
|
<img crossOrigin="anonymous" :src="item.url" :style="{transform:`rotateZ(${printStyleList[index].transform.rotateZ}deg)`}" class="designOpenrtion_imgItme" draggable="false">
|
|
</div>
|
|
</div>
|
|
<img :src="current?.path" alt="" class="designOpenrtion_sketch">
|
|
<div class="designOpenrtion_btn">
|
|
<ul v-for="item,index in printStyleList" :key="item" :class="{active:item.designOpenrtionBtn}" class="designOpenrtion_btn" :style="item.style" @mousedown.stop="itemMoveMousedown(index,$event)">
|
|
<li class="designOpenrtion_btn_top" @mousedown.stop="itemSizeMousedown('top',$event)"></li>
|
|
<li class="designOpenrtion_btn_bottom" @mousedown.stop="itemSizeMousedown('bottom',$event)"></li>
|
|
<li class="designOpenrtion_btn_left" @mousedown.stop="itemSizeMousedown('left',$event)"></li>
|
|
<li class="designOpenrtion_btn_right" @mousedown.stop="itemSizeMousedown('right',$event)"></li>
|
|
<li class="designOpenrtion_rotote" v-rotote.stop="[index,item.transform]"></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mark_loading" v-show="loadingShow">
|
|
<a-spin size="large" />
|
|
</div>
|
|
</a-modal>
|
|
</div>
|
|
</template>
|
|
|
|
<script >
|
|
import { defineComponent, h,createVNode, ref ,computed, inject,nextTick} from "vue";
|
|
import { LoadingOutlined } from "@ant-design/icons-vue";
|
|
import { useStore } from "vuex";
|
|
import { Modal,message } from 'ant-design-vue';
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
|
export default defineComponent({
|
|
|
|
setup(prop) {
|
|
let designOpenrtion = ref(false);
|
|
let designOpenrtionList = ref([])
|
|
let current = inject('current')//父组件传过来的数据
|
|
let overallSingle = ref(false)
|
|
let systemDesignerPercentage = ref(0)
|
|
let printAmount = ref(1)//印花数量
|
|
let printZIndex = ref(2)//印花优先级
|
|
let printStyleList = ref([{
|
|
centers:{
|
|
left:0,
|
|
top:0,
|
|
},
|
|
style:{
|
|
left:0+"px",
|
|
top:0+"px",
|
|
right:"auto",
|
|
bottom:"auto",
|
|
width:'auto',
|
|
height:'auto',
|
|
zIndex:1,
|
|
},
|
|
transform:{
|
|
scale:1,
|
|
rotateZ:0,
|
|
},
|
|
designOpenrtionBtn:false
|
|
}]);
|
|
|
|
let direction = ref('')
|
|
let imgDom = ref()
|
|
let imgDomIndex = ref(0)
|
|
let print = ref({
|
|
width:'',
|
|
height:''
|
|
})
|
|
let sketch = ref({
|
|
width:'',
|
|
height:''
|
|
})
|
|
let loadingShow = ref(false)
|
|
return {
|
|
designOpenrtion,
|
|
designOpenrtionList,
|
|
overallSingle,
|
|
systemDesignerPercentage,
|
|
current,
|
|
printAmount,
|
|
printZIndex,
|
|
printStyleList,
|
|
direction,//判断点击的是li那个边
|
|
imgDom,
|
|
imgDomIndex,
|
|
print,
|
|
sketch,
|
|
loadingShow,
|
|
};
|
|
},
|
|
data() {
|
|
return {
|
|
store: useStore(),
|
|
};
|
|
},
|
|
|
|
directives:{
|
|
//操作旋转
|
|
rotote:{
|
|
mounted(el,value){
|
|
let mouse = true;
|
|
let angle = 0
|
|
let num = 1
|
|
let x = 0
|
|
let y = 0
|
|
num = value.value[1].scale
|
|
angle = value.value[1].rotateZ
|
|
let elParent = document.getElementsByClassName('designOpenrtion_modal')[0].getElementsByClassName('modal_imgItem')[value.value[0]]
|
|
// 添加鼠标按下事件监听器
|
|
el.style.transform = "rotateZ("+ angle + "deg)"
|
|
el.addEventListener('mousedown', (e) => {
|
|
// let scale = Number(elParent.firstElementChild.style.transform?.split('scale(')[1]?.split(')')[0])
|
|
// let rotateZ = Number(elParent.firstElementChild.style.transform?.split('rotateZ(')[1]?.split('deg')[0])
|
|
e.stopPropagation()
|
|
mouse = true;
|
|
var info = el.getBoundingClientRect();
|
|
let eX = info.x + info.width / 2;
|
|
let eY = info.y + info.height / 2;
|
|
|
|
document.addEventListener('mousemove', (e) => {
|
|
if (mouse) {
|
|
let X = eX
|
|
let Y = eY
|
|
let x = e.clientX - X
|
|
let y = Y - e.clientY
|
|
angle = Math.atan2(x,y)*(180 / Math.PI)
|
|
elParent.firstElementChild.style.transform = "rotateZ("+ angle + "deg)"
|
|
el.style.transform = "rotateZ("+ angle + "deg)"
|
|
}
|
|
});
|
|
// 添加鼠标松开事件监听器
|
|
document.addEventListener('mouseup', () => {
|
|
mouse = false;
|
|
});
|
|
});
|
|
//缩放
|
|
// let timeSwitch = true
|
|
// el.parentNode.addEventListener('mousemove', (e) => {
|
|
// el.parentNode.addEventListener('mousewheel',(e) => {
|
|
// if(timeSwitch){
|
|
// timeSwitch = false
|
|
// if(e.deltaY > 0){
|
|
// if(num <= 1){
|
|
// num -= 0.05
|
|
// }else{
|
|
// num -= 0.1
|
|
// }
|
|
// }else{
|
|
// //放大
|
|
// if(num <= 1){
|
|
// num += 0.05
|
|
// }else{
|
|
// num += 0.1
|
|
// }
|
|
// }
|
|
// if(num >= 3){
|
|
// num = 3
|
|
// }else if (num < .2){
|
|
// num = .2
|
|
// }
|
|
// setTimeout(() => {
|
|
// timeSwitch = true
|
|
// }, 100);
|
|
// elParent.firstElementChild.style.transform = "scale("+ num + ") rotateZ("+ angle + "deg)"
|
|
// console.log(num);
|
|
// }
|
|
// });
|
|
// });
|
|
}
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
init(){
|
|
let DesignPrintOperationParent = this.$parent
|
|
this.designOpenrtion = true
|
|
this.clearModal()
|
|
this.designOpenrtionList.push(this.current.printObject)
|
|
this.overallSingle = DesignPrintOperationParent.overallSingle
|
|
this.systemDesignerPercentage = DesignPrintOperationParent.systemDesignerPercentage
|
|
|
|
let skecth = new Image
|
|
skecth.src = this.current.path
|
|
skecth.onload=()=>{
|
|
this.sketch.width = skecth.width/10+'rem'
|
|
this.sketch.height = skecth.height/10+'rem'
|
|
}
|
|
let print = new Image
|
|
print.src = this.current.printObject.url
|
|
print.onload=()=>{
|
|
this.print.width = print.width+'px'
|
|
this.print.height = print.height+'px'
|
|
this.printStyleList[0].style.width = print.width+'px'
|
|
this.printStyleList[0].style.height = print.height+'px'
|
|
}
|
|
},
|
|
systemDesigner(num) {
|
|
this.current.printObject.scale = num
|
|
},
|
|
setOveralSingle(){
|
|
},
|
|
formatter(value) {
|
|
|
|
return `${value}%`;
|
|
},
|
|
|
|
setOveralSingle(){
|
|
this.current.printObject.ifSingle = this.overallSingle
|
|
if (!this.current.printObject.ifSingle) {
|
|
this.printAmount = 1
|
|
this.setprintAmount()
|
|
}
|
|
},
|
|
setpitch(item,index){
|
|
this.printStyleList.forEach((v)=>{
|
|
v.designOpenrtionBtn = false
|
|
})
|
|
this.printStyleList[index].designOpenrtionBtn = true
|
|
this.printStyleList[index].style.zIndex = this.printZIndex++
|
|
},
|
|
//设置移动
|
|
itemMoveMousedown(index,event){
|
|
this.imgDomIndex = index
|
|
this.printStyleList.forEach((v)=>{
|
|
v.designOpenrtionBtn = false
|
|
})
|
|
this.imgDom = document.getElementsByClassName('designOpenrtion_modal')[0].getElementsByClassName("modal_imgItem")[this.imgDomIndex]
|
|
let scale = Number(this.imgDom.children[0].style.transform?.split('scale(')[1]?.split(')')[0])
|
|
let rotateZ = Number(this.imgDom.children[0].style.transform?.split('rotateZ(')[1]?.split('deg')[0])
|
|
this.printStyleList[index].designOpenrtionBtn = true
|
|
this.printStyleList[index].style.zIndex = this.printZIndex++
|
|
this.printStyleList[index].transform = {
|
|
scale:scale,
|
|
rotateZ:rotateZ,
|
|
}
|
|
let imgDomWH = this.imgDom.getBoundingClientRect()
|
|
let left = Number(this.printStyleList[index].style.left.replace(/px/g,''))
|
|
let top = Number(this.printStyleList[index].style.top.replace(/px/g,''))
|
|
this.printStyleList[index].centers.left = imgDomWH.x+event.offsetX-left
|
|
this.printStyleList[index].centers.top = imgDomWH.y+event.offsetY-top
|
|
document.addEventListener("mouseup", this.mouseup);
|
|
document.addEventListener("mousemove", this.moveMousemove);
|
|
},
|
|
//设置尺寸
|
|
itemSizeMousedown(direction,event){
|
|
this.direction = direction
|
|
this.imgDom = document.getElementsByClassName('designOpenrtion_modal')[0].getElementsByClassName("modal_imgItem")[this.imgDomIndex]
|
|
let scale = Number(this.imgDom.firstChild.style.transform?.split('scale(')[1]?.split(')')[0])
|
|
let rotateZ = Number(this.imgDom.firstChild.style.transform?.split('rotateZ(')[1]?.split('deg')[0])
|
|
this.printStyleList[this.imgDomIndex].designOpenrtionBtn = true
|
|
this.printStyleList[this.imgDomIndex].transform = {
|
|
scale:scale,
|
|
rotateZ:rotateZ,
|
|
}
|
|
let imgDomWH = this.imgDom.getBoundingClientRect()
|
|
let li = document.getElementsByClassName('designOpenrtion_modal')[0].getElementsByClassName("designOpenrtion_btn_top")[0].offsetWidth/2
|
|
if(this.direction == 'right' || this.direction == 'bottom'){
|
|
this.printStyleList[this.imgDomIndex].centers.left = imgDomWH.x+event.offsetX-li
|
|
this.printStyleList[this.imgDomIndex].centers.top = imgDomWH.y+event.offsetY-li
|
|
}else{
|
|
this.printStyleList[this.imgDomIndex].centers.left = imgDomWH.x+event.offsetX+imgDomWH.width-li
|
|
this.printStyleList[this.imgDomIndex].centers.top = imgDomWH.y+event.offsetY+imgDomWH.height-li
|
|
}
|
|
|
|
document.addEventListener("mouseup", this.sizeMouseup);
|
|
document.addEventListener("mousemove", this.sizeMousemove);
|
|
},
|
|
//鼠标移动
|
|
moveMousemove(e) {
|
|
let imgDomWH = this.imgDom.getBoundingClientRect()
|
|
let parentNode = document.getElementsByClassName('designOpenrtion_modal')[0].getElementsByClassName("designOpenrtion_imgMask")[0].getBoundingClientRect()
|
|
let x = (e.x - this.printStyleList[this.imgDomIndex].centers.left)+'px'
|
|
let y = ( e.y - this.printStyleList[this.imgDomIndex].centers.top)+'px'
|
|
this.printStyleList[this.imgDomIndex].style.left = x
|
|
this.printStyleList[this.imgDomIndex].style.top = y
|
|
if(x.replace(/px/g,'') >= parentNode.width - imgDomWH.width){
|
|
this.printStyleList[this.imgDomIndex].style.left = parentNode.width - imgDomWH.width+'px'
|
|
}
|
|
if(x.replace(/px/g,'') <= 0){
|
|
this.printStyleList[this.imgDomIndex].style.left = 0+'px'
|
|
}
|
|
if(y.replace(/px/g,'') >= parentNode.height - imgDomWH.height){
|
|
this.printStyleList[this.imgDomIndex].style.top = parentNode.height - imgDomWH.height+'px'
|
|
}
|
|
if(y.replace(/px/g,'') <= 0){
|
|
this.printStyleList[this.imgDomIndex].style.top = 0+'px'
|
|
}
|
|
},
|
|
|
|
sizeMousemove(e) {
|
|
let imgDomWH = this.imgDom.getBoundingClientRect()
|
|
let parentNode =this.imgDom.parentNode
|
|
let width = imgDomWH.width
|
|
let height = imgDomWH.height
|
|
let num = width/height
|
|
let w,h
|
|
//判断移动四个边
|
|
if(this.direction == 'right'){
|
|
w = (e.x - this.printStyleList[this.imgDomIndex].centers.left)
|
|
h = (e.x - this.printStyleList[this.imgDomIndex].centers.left)*num
|
|
width = w+'px'
|
|
height = w*num+'px'
|
|
}else if(this.direction == 'top'){
|
|
this.printStyleList[this.imgDomIndex].style.top = 'auto'
|
|
// this.printStyleList[this.imgDomIndex].style.left = 'auto'
|
|
this.printStyleList[this.imgDomIndex].style.bottom = parentNode.offsetHeight -imgDomWH.height - this.imgDom.offsetTop+'px'
|
|
w = (e.x - this.printStyleList[this.imgDomIndex].centers.left)*num
|
|
h = (this.printStyleList[this.imgDomIndex].centers.top - e.y)
|
|
|
|
height = h+'px'
|
|
width = h*num+'px'
|
|
}else if(this.direction == 'bottom'){
|
|
h = (e.y - this.printStyleList[this.imgDomIndex].centers.top)
|
|
height = h+'px'
|
|
width = h*num+'px'
|
|
}else if(this.direction == 'left'){
|
|
this.printStyleList[this.imgDomIndex].style.left = 'auto'
|
|
this.printStyleList[this.imgDomIndex].style.right = parentNode.offsetWidth -imgDomWH.width - this.imgDom.offsetLeft+'px'
|
|
w = (this.printStyleList[this.imgDomIndex].centers.left - e.x)
|
|
width = w+'px'
|
|
height = w*num+'px'
|
|
}
|
|
//判断尺寸是否到边
|
|
this.printStyleList[this.imgDomIndex].style.width = width
|
|
this.printStyleList[this.imgDomIndex].style.height = height
|
|
|
|
},
|
|
//鼠标抬起
|
|
sizeMouseup(e){
|
|
this.printStyleList[this.imgDomIndex].style={
|
|
right:'auto',
|
|
left:this.imgDom.offsetLeft+'px',
|
|
bottom:'auto',
|
|
top:this.imgDom.offsetTop+'px',
|
|
height:this.imgDom.offsetHeight+'px',
|
|
width:this.imgDom.offsetWidth+'px',
|
|
zIndex:this.printZIndex
|
|
}
|
|
document.removeEventListener("mouseup", this.sizeMouseup);
|
|
document.removeEventListener("mousemove", this.sizeMousemove);
|
|
},
|
|
mouseup(e) {
|
|
|
|
document.removeEventListener("mouseup", this.mouseup);
|
|
document.removeEventListener("mousemove", this.moveMousemove);
|
|
},
|
|
|
|
|
|
setprintAmount(){
|
|
if(this.printAmount < 1){
|
|
this.printAmount = 1
|
|
return
|
|
}
|
|
if(this.printAmount > 10){
|
|
this.printAmount = 10
|
|
return
|
|
}
|
|
let printTiemNum
|
|
if(this.printAmount>this.printStyleList.length){
|
|
let num = this.printAmount - this.printStyleList.length
|
|
for (let index = 0; index < num; index++) {
|
|
this.printStyleList.push(this.printStyleList[this.printStyleList.length-1])
|
|
this.refetchTemplate(this.printStyleList.length-1)
|
|
this.designOpenrtionList.push(this.current.printObject)
|
|
}
|
|
}else{
|
|
let num = this.printStyleList.length - this.printAmount
|
|
this.designOpenrtionList.splice(this.printStyleList.length-num,num)
|
|
this.printStyleList.splice(this.printStyleList.length-num,num)
|
|
}
|
|
this.printStyleList.forEach((v)=>{
|
|
v.designOpenrtionBtn = false
|
|
})
|
|
this.printStyleList[this.printStyleList.length-1].designOpenrtionBtn = true
|
|
this.imgDomIndex = this.printStyleList.length-1
|
|
},
|
|
random(){
|
|
this.printStyleList.forEach((v,index)=>{
|
|
this.refetchTemplate(index)
|
|
})
|
|
},
|
|
//随机重置图片顺序
|
|
refetchTemplate(index) {
|
|
let scale = (Math.trunc(Math.random()*15)+1)*.1
|
|
let rotateZ1 = Math.trunc(Math.random()*360)+1
|
|
let rotateZ2 = Math.trunc(Math.random()*360)+1
|
|
let sketch = document.getElementsByClassName('designOpenrtion_sketch')[0]
|
|
console.log(sketch.offsetHeight);
|
|
let x = sketch.width-Number(this.print.width.replace(/px/g,''))
|
|
let y = sketch.height-Number(this.print.height.replace(/px/g,''))
|
|
this.printStyleList[index]={
|
|
centers:{
|
|
left:0,
|
|
top:0,
|
|
},
|
|
style:{
|
|
left:Math.trunc(Math.random()*x)+1+"px",
|
|
top:Math.trunc(Math.random()*y)+1+"px",
|
|
right:"auto",
|
|
bottom:"auto",
|
|
width:this.print.width.replace(/px/g,'')*scale+'px',
|
|
height:this.print.height.replace(/px/g,'')*scale+'px',
|
|
zIndex:this.printZIndex++
|
|
},
|
|
transform:{
|
|
// scale:scale<.2?.2:scale,//0.2-3
|
|
rotateZ:rotateZ1-rotateZ2,
|
|
},
|
|
designOpenrtionBtn:false
|
|
}
|
|
},
|
|
setPreview(){
|
|
let designItemDetail = JSON.parse(JSON.stringify(this.store.state.DesignDetailModule.designItemDetail))
|
|
let index
|
|
let scale = this.printStyleList[0].style.width.replace(/px/g,'')/this.print.width.replace(/px/g,'')
|
|
designItemDetail.clothes.forEach((v,ind)=>{
|
|
if(v.id == this.current.id){
|
|
index = ind
|
|
}
|
|
})
|
|
let priority = designItemDetail.clothes.map((v)=>{
|
|
return v.type
|
|
})
|
|
// let
|
|
let data = {
|
|
...designItemDetail,
|
|
priority:priority,
|
|
timeZone:Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
}
|
|
// this.loadingShow = true
|
|
// Https.axiosPost(Https.httpUrls.designSingle, data).then(
|
|
// (rv) => {
|
|
// // this.parentData.design.designItemUrl = rv.designItemUrl
|
|
// // this.$emit('finishRedesign',this.parentData)
|
|
// // this.closeModal()
|
|
// let designItemDetail = JSON.parse(JSON.stringify(this.store.state.DesignDetailModule.designItemDetail))
|
|
// console.log(designItemDetail);
|
|
// this.loadingShow = false
|
|
// // this.closeModal()
|
|
// console.log(rv);
|
|
// }
|
|
// ).catch(res=>{
|
|
// this.loadingShow = false
|
|
// });
|
|
},
|
|
clearModal(){
|
|
this.printAmount = 1//显示数量
|
|
this.designOpenrtion = true//modal页面关闭
|
|
this.printZIndex = 2//点击图片z-index
|
|
this.imgDomIndex = 0//点击图片下标
|
|
this.designOpenrtionList = []
|
|
this.printStyleList.splice(1,this.printStyleList.length-1)
|
|
this.printStyleList[0] = {
|
|
centers:{
|
|
left:0,
|
|
top:0,
|
|
},
|
|
style:{
|
|
left:0+"px",
|
|
top:0+"px",
|
|
right:"auto",
|
|
bottom:"auto",
|
|
width:'auto',
|
|
height:'auto',
|
|
zIndex:1,
|
|
},
|
|
transform:{
|
|
scale:1,
|
|
rotateZ:0,
|
|
},
|
|
designOpenrtionBtn:false
|
|
}
|
|
},
|
|
closeModal(){
|
|
let designItemDetail = JSON.parse(JSON.stringify(this.store.state.DesignDetailModule.designItemDetail))
|
|
let _this = this
|
|
Modal.confirm({
|
|
title: 'The above changes are not saved, being sure to continue? ',
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
okText: 'Yes',
|
|
cancelText: 'No',
|
|
mask:false,
|
|
// centered:true,
|
|
onOk() {
|
|
_this.designOpenrtion=false
|
|
}
|
|
});
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.designOpenrtion_modal {
|
|
max-width: 1440px;
|
|
.ant-modal-body{
|
|
padding: 4rem 5rem 0rem!important;
|
|
// height: calc(65vh - 6.4rem);
|
|
height: 65rem;
|
|
display: flex;
|
|
overflow-y: hidden;
|
|
flex-direction: column;
|
|
}
|
|
.ant-modal-content{
|
|
border-radius: 1rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.designOpenrtion_content {
|
|
// background: #f2f3fb;
|
|
// padding-bottom: 2.9rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
.designOpenrtion_header {
|
|
position: relative;
|
|
height: 6.6rem;
|
|
width: 100%;
|
|
background: #F7F7F7;
|
|
|
|
.placement_modal_title{
|
|
position: absolute;
|
|
height: 100%;
|
|
line-height: 6.6rem;
|
|
left: 3.7rem;
|
|
top: 0;
|
|
font-size: 1.8rem;
|
|
color: #030303;
|
|
}
|
|
}
|
|
|
|
|
|
.designOpenrtion_open{
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
.print_right{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
border: 2px solid;
|
|
padding: 2rem 0;
|
|
width: 16rem;
|
|
border-radius: 1rem;
|
|
.habit_Overal_Single {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
// margin: 2rem 0;
|
|
transform: scale(.8);
|
|
|
|
// margin: 3rem 0;
|
|
.habit_Overal_Single_text {
|
|
font-weight: 600;
|
|
color: rgba(0, 0, 0, 0.5);
|
|
&.active {
|
|
color: rgba(0, 0, 0, 0.7);
|
|
// font-weight: 900;
|
|
transform: scale(1.2);
|
|
}
|
|
}
|
|
.ant-switch {
|
|
margin: 0 1rem;
|
|
background-color: #efefef;
|
|
}
|
|
.ant-switch-checked {
|
|
background-color: #000;
|
|
}
|
|
}
|
|
.habit_System_Designer {
|
|
margin-top: 4rem;
|
|
transform: scale(.8);
|
|
width: 100%;
|
|
.ant-slider-track,
|
|
.ant-slider-rail {
|
|
height: .6rem;
|
|
background-color: #e1e1e1;
|
|
border-radius: 0.5rem;
|
|
}
|
|
.ant-slider .ant-slider-handle:not(.ant-tooltip-open),
|
|
.ant-slider-handle {
|
|
background-color: #2d2e76 !important;
|
|
border: none !important;
|
|
}
|
|
.ant-slider-handle:hover{
|
|
box-shadow: 0 0 0 5px rgba(45, 46, 118, 0.2);
|
|
}
|
|
}
|
|
.button_second{
|
|
margin-top: 1rem;
|
|
}
|
|
.print_input{
|
|
margin-top: 1rem;
|
|
.search_input{
|
|
width: 9.85rem;
|
|
padding: 0 1.5rem;
|
|
border: 2px solid #000;
|
|
font-size: 1.2rem;
|
|
font-weight: 400;
|
|
height: 3rem;
|
|
border-radius: 1.5rem;
|
|
&::placeholder {
|
|
color: #C2C2C2;
|
|
}
|
|
}
|
|
}
|
|
.designOpenrtion_nav{
|
|
display: flex;
|
|
margin-top: 2rem;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
height: 10rem;
|
|
overflow-x: hidden;
|
|
justify-content: space-evenly;
|
|
&.designOpenrtion_nav::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.active{
|
|
img{
|
|
border: 2px solid;
|
|
border-radius: 2px;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
.designOpenrtion_single{
|
|
width: 40%;
|
|
}
|
|
img{
|
|
width: 100%;
|
|
cursor: pointer;
|
|
}
|
|
.designOpenrtion_overall{
|
|
width: 80%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.designOpenrtion_centent{
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
user-select:none;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
&.active{
|
|
flex-direction: row;
|
|
}
|
|
.designOpenrtion_imgMask{
|
|
width: auto;
|
|
height: auto;
|
|
position: relative;
|
|
>img{
|
|
z-index: 2;
|
|
position: relative;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
>div{
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
}
|
|
}
|
|
.designOpenrtion_print{
|
|
z-index: 1;
|
|
.modal_imgItem{
|
|
position: absolute;
|
|
overflow: hidden;
|
|
top: 0;
|
|
img{
|
|
width: 100%;
|
|
height: 100%;
|
|
float: left;
|
|
user-select:none;
|
|
-webkit-user-drag: none;
|
|
}
|
|
}
|
|
}
|
|
.designOpenrtion_btn{
|
|
z-index: 3;
|
|
ul{
|
|
list-style: none;
|
|
// width: 100%;
|
|
// height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
box-sizing: border-box;
|
|
border: 2px solid rgb(20, 188, 255);
|
|
padding: 0;
|
|
-webkit-user-drag: none;
|
|
user-select:none;
|
|
opacity: 0;
|
|
margin: 0;
|
|
|
|
li{
|
|
cursor: pointer;
|
|
// border-radius: 50%;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
background-color: rgb(20, 188, 255);
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
&.active{
|
|
opacity: 1;
|
|
li{
|
|
pointer-events: auto;
|
|
}
|
|
}
|
|
.designOpenrtion_btn_top,.designOpenrtion_btn_bottom{
|
|
left: 50%;
|
|
transform: translate(-50%,-50%) ;
|
|
cursor: n-resize;
|
|
}
|
|
.designOpenrtion_btn_top{
|
|
top: 0;
|
|
}
|
|
.designOpenrtion_btn_bottom{
|
|
top: 100%;
|
|
}
|
|
.designOpenrtion_btn_left,.designOpenrtion_btn_right{
|
|
top: 50%;
|
|
transform: translate(-50%,-50%) ;
|
|
cursor: e-resize;
|
|
}
|
|
.designOpenrtion_btn_left{
|
|
left: 0;
|
|
}
|
|
.designOpenrtion_btn_right{
|
|
left: 100%;
|
|
}
|
|
.designOpenrtion_rotote{
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
.designOpenrtion_rotote::after{
|
|
position: absolute;
|
|
content: "";
|
|
background-color: #14bcff;
|
|
width: 2px;
|
|
height: 30px;
|
|
left: 50%;
|
|
bottom: 0;
|
|
transform: translateX(-50%);
|
|
}
|
|
.designOpenrtion_rotote::before{
|
|
position: absolute;
|
|
content: "";
|
|
background-color: #14bcff;
|
|
top: calc(50% - 30px);
|
|
left: 50%;
|
|
transform: translate(-50%,-50%) ;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
.subitOkPreviewBtn{
|
|
z-index: 2;
|
|
margin: 1rem 0;
|
|
width: 10rem;
|
|
text-align: center;
|
|
position: initial;
|
|
transform: none;
|
|
}
|
|
}
|
|
}
|
|
</style> |