Signed-off-by: chy <chy@163.com>

This commit is contained in:
chy
2026-02-02 23:28:29 +08:00
commit 84bdfdb8bc
576 changed files with 941155 additions and 0 deletions

View File

@@ -0,0 +1,79 @@
<template>
<div class="imagebox" :style="styleColor">
<img
:class="transStyle.startRotate ? 'startImg' : ''"
:style="imgStyle"
:src="imgStyle.imageAdress"
alt=""
/>
</div>
</template>
<script>
export default {
name: "WidgetImage",
components: {},
props: {
value: Object,
ispreview: Boolean
},
data() {
return {
options: {}
};
},
computed: {
transStyle() {
return this.objToOne(this.options);
},
styleColor() {
return {
position: this.ispreview ? "absolute" : "static",
background: this.transStyle.background,
"text-align": this.transStyle.textAlign,
width: this.transStyle.width + "px",
height: this.transStyle.height + "px",
left: this.transStyle.left + "px",
top: this.transStyle.top + "px",
right: this.transStyle.right + "px"
};
},
imgStyle() {
return {
imageAdress: this.transStyle.imageAdress,
"border-radius": this.transStyle.borderRadius + "px",
opacity: this.transStyle.transparency / 100,
animation: this.transStyle.startRotate? "turn "+(101-this.transStyle.rotationSpeed)/10+"s linear infinite":"none"
};
}
},
watch: {
value: {
handler(val) {
this.options = val;
},
deep: true
}
},
created() {
this.options = this.value;
},
mounted() {},
methods: {}
};
</script>
<style scoped lang="scss">
.imagebox {
width: 100%;
height: 100%;
overflow: hidden;
}
.imagebox img {
width: 100%;
height: 100%;
}
.startImg {
animation: turn 1s linear infinite;
}
</style>