feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

View File

@ -0,0 +1,119 @@
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号1 8 61 407 25 4 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-spin__wrap" :style="{width:width?width+'rpx':'auto',height:height?height+'rpx':'auto'}"
ref="fui_spin_ani">
<slot></slot>
</view>
</template>
<script>
// #ifdef APP-NVUE
const animation = uni.requireNativePlugin('animation');
// #endif
export default {
name: "fui-spin",
props: {
width: {
type: [Number, String],
default: 0
},
height: {
type: [Number, String],
default: 0
}
},
data() {
return {
// #ifdef APP-NVUE
deg: 0,
stop: false
// #endif
};
},
// #ifdef APP-NVUE
mounted() {
this.$nextTick(() => {
setTimeout(() => {
this.deg += 360;
this._animation()
}, 50)
})
},
// #endif
// #ifdef APP-NVUE
// #ifndef VUE3
beforeDestroy() {
this.deg = 0;
this.stop = true;
},
// #endif
// #ifdef VUE3
beforeUnmount() {
this.deg = 0;
this.stop = true;
},
// #endif
// #endif
methods: {
// #ifdef APP-NVUE
_animation() {
if (!this.$refs['fui_spin_ani'] || this.stop) return;
animation.transition(
this.$refs['fui_spin_ani'].ref, {
styles: {
transform: `rotate(${this.deg}deg)`
},
duration: 800, //ms
timingFunction: 'linear',
iterationCount: 'infinite',
needLayout: false,
delay: 0 //ms
}, () => {
this.deg += 360;
this._animation()
}
);
}
// #endif
}
}
</script>
<style scoped>
.fui-spin__wrap {
/* #ifndef APP-NVUE */
display: inline-flex;
/* #endif */
align-items: center;
justify-content: center;
flex-direction: row;
/* #ifndef APP-NVUE */
animation: spin 0.85s linear infinite;
/* #endif */
}
/* #ifndef APP-NVUE */
@-webkit-keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* #endif */
</style>