1 line
1.6 KiB
Plaintext
1 line
1.6 KiB
Plaintext
{"version":3,"file":"LocalLoader.js","sources":["../../../../src/components/LocalLoader.vue","../../../../uniComponent:/RDovQXBwL1dvcmsvYWRkci9hY2RyLXVpL3NyYy9jb21wb25lbnRzL0xvY2FsTG9hZGVyLnZ1ZQ"],"sourcesContent":["<template>\n <view class=\"w-full h-[20px] flex flex-col items-center\" v-if=\"modelValue\">\n <view class=\"loading-animation\">\n <view\n v-for=\"color in colors\"\n :key=\"color\"\n :style=\"{ backgroundColor: color }\"\n class=\"ball\"\n ></view>\n </view>\n </view>\n</template>\n\n<script setup>\nimport { defineProps } from 'vue'\n\nconst props = defineProps({\n modelValue: Boolean,\n})\n\nconst colors = ['#FF6347', '#4682B4', '#32CD32', '#FFD700', '#FF69B4', '#00FA9A']\n</script>\n\n<style scoped>\n.loading-animation {\n display: flex;\n gap: 5px;\n justify-content: space-around;\n width: 100px;\n}\n\n.ball {\n width: 15px;\n height: 15px;\n border-radius: 50%;\n animation: bounce 1.2s infinite ease-in-out;\n}\n\n.ball:nth-child(1) {\n animation-delay: -0.32s;\n}\n.ball:nth-child(2) {\n animation-delay: -0.16s;\n}\n.ball:nth-child(3) {\n animation-delay: -0.13s;\n}\n.ball:nth-child(4) {\n animation-delay: -0.07s;\n}\n.ball:nth-child(5) {\n animation-delay: -0.04s;\n}\n.ball:nth-child(6) {\n animation-delay: 0s;\n}\n\n@keyframes bounce {\n 0%,\n 80%,\n 100% {\n transform: scale(0);\n }\n 40% {\n transform: scale(1);\n }\n}\n</style>\n","import Component from 'D:/App/Work/addr/acdr-ui/src/components/LocalLoader.vue'\nwx.createComponent(Component)"],"names":[],"mappings":";;;;;;;;AAAA,UAAA,SAAA,CAAA,WAAA,WAAA,WAAA,WAAA,WAAA,SAAA;;;;;;;;;;;;;;;;ACCA,GAAG,gBAAgB,SAAS;"} |