Merge branch 'feature/feature-20250331-h5' of https://e.coding.yili.com/yldc/ylst/ylst-survey-h5 into feature/feature-20250331-h5

This commit is contained in:
Huangzhe
2025-03-07 14:33:03 +08:00
14 changed files with 137 additions and 126 deletions

View File

@@ -178,48 +178,48 @@ const undo = () => {
<style lang="scss" scoped>
.sign-question {
width: 100%;
position: relative;
position: relative;
display: flex;
flex-direction: column;
gap: 10px;
align-items: center;
width: 100%;
padding: 10px 0;
// canvas {
// width: 100%;
// touch-action: none;
// }
.sign-text {
position: absolute;
bottom: 0;
left: 50%;
display: flex;
flex-direction: column;
flex-direction: row;
align-items: center;
gap: 10px;
padding: 10px 0;
justify-content: space-around;
width: 100%;
color: #999;
font-size: 14px;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s;
transform: translate(-50%, -50%);
// canvas {
// width: 100%;
// touch-action: none;
// }
.sign-text {
position: absolute;
bottom: 0;
left: 50%;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
transform: translate(-50%, -50%);
width: 100%;
color: #999;
font-size: 14px;
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
&.show {
opacity: 0.8;
pointer-events: auto;
}
span {
cursor: pointer;
padding: 5px 10px;
&:hover {
color: #666;
}
}
&.show {
opacity: 0.8;
pointer-events: auto;
}
span {
padding: 5px 10px;
cursor: pointer;
&:hover {
color: #666;
}
}
}
}
</style>