ADD: Dev Playground (for testing components) & LEDRing

This commit is contained in:
Robert Kossessa
2024-01-30 14:39:37 +01:00
parent d9cbf67867
commit 94d22ed365
6 changed files with 54 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ function onMouseUp() {
<template>
<span @mousedown="onMouseDown">
<svg ref="bar" xmlns="http://www.w3.org/2000/svg" :width="width+12" height="32">
<svg ref="bar" :width="width+12" height="32">
<g>
<rect
v-for="(_, i) in count"

View File

@@ -0,0 +1,37 @@
<template>
<svg :width="size" :height="size" filter="url(#blur)" class="mix-blend-screen">
<filter id="blur" color-interpolation-filters="sRGB">
<feGaussianBlur
v-for="index in blurSteps" :key="index" in="SourceGraphic" :stdDeviation="blur*index"
:result="index" />
<feMerge result="blurMerge">
<feMergeNode v-for="index in blurSteps" :key="index" :in="index" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<circle
v-for="index in ledCount" :key="index"
:r="radius"
:cx="size/2"
:cy="size/2"
fill="none"
:stroke-width="ledWidth"
:stroke-dashoffset="index/ledCount*ledArcSize"
:stroke-dasharray="`${ledArcSize/ledCount} ${ledArcSize}`"
:stroke="`rgb(${index/ledCount*255} ${index/ledCount*255-128} ${0})`" />
</svg>
</template>
<script setup>
import { computed, ref } from 'vue'
const radius = ref(120)
const ledWidth = ref(5)
const ledCount = ref(60)
const blur = ref(10)
const blurSteps = ref(3)
const padding = ref(20)
const size = computed(() => (radius.value + padding.value) * 2 + ledWidth.value)
const ledArcSize = computed(() => 2 * Math.PI * radius.value)
</script>