UNPKG

vue-cesium

Version:
124 lines (119 loc) 2.45 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var vue = require('vue'); var useSpinner = require('./use-spinner.js'); "use strict"; const svg = [ vue.h( "circle", { cx: "15", cy: "15", r: "15" }, [ vue.h("animate", { attributeName: "r", from: "15", to: "15", begin: "0s", dur: "0.8s", values: "15;9;15", calcMode: "linear", repeatCount: "indefinite" }), vue.h("animate", { attributeName: "fill-opacity", from: "1", to: "1", begin: "0s", dur: "0.8s", values: "1;.5;1", calcMode: "linear", repeatCount: "indefinite" }) ] ), vue.h( "circle", { cx: "60", cy: "15", r: "9", "fill-opacity": ".3" }, [ vue.h("animate", { attributeName: "r", from: "9", to: "9", begin: "0s", dur: "0.8s", values: "9;15;9", calcMode: "linear", repeatCount: "indefinite" }), vue.h("animate", { attributeName: "fill-opacity", from: ".5", to: ".5", begin: "0s", dur: "0.8s", values: ".5;1;.5", calcMode: "linear", repeatCount: "indefinite" }) ] ), vue.h( "circle", { cx: "105", cy: "15", r: "15" }, [ vue.h("animate", { attributeName: "r", from: "15", to: "15", begin: "0s", dur: "0.8s", values: "15;9;15", calcMode: "linear", repeatCount: "indefinite" }), vue.h("animate", { attributeName: "fill-opacity", from: "1", to: "1", begin: "0s", dur: "0.8s", values: "1;.5;1", calcMode: "linear", repeatCount: "indefinite" }) ] ) ]; var SpinnerDots = vue.defineComponent({ name: "VcSpinnerDots", props: useSpinner.useSpinnerProps, setup(props) { const { cSize, classes } = useSpinner["default"](props); return () => vue.h( "svg", { class: classes.value, fill: "currentColor", width: cSize.value, height: cSize.value, viewBox: "0 0 120 30", xmlns: "http://www.w3.org/2000/svg" }, svg ); } }); exports["default"] = SpinnerDots; //# sourceMappingURL=spinner-dots.js.map