icon minification

This commit is contained in:
2023-07-06 20:15:20 +02:00
parent b6166c99fc
commit da2dfeee63
8 changed files with 206 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<mask id="cross" maskUnits="userSpaceOnUse">
<rect x="0" y="0" width="32" height="32" fill="white" />
<path d="M0 0L32 32M0 32L32 0" stroke="black" stroke-width="3" />
</mask>
<circle cx="16" cy="16" r="11.5" fill="none" stroke="white" stroke-width="9" mask="url(#cross)" />
</svg>

After

Width:  |  Height:  |  Size: 433 B

View File

@@ -0,0 +1,5 @@
<script>
import RingInput from "$lib/components/RingInput.svelte"
</script>
<RingInput />

View File

@@ -0,0 +1,125 @@
<script>
export let activeLayer = 1
export let layers = 3
export let layout = [
["a", "b", "c"],
["d", "e", "f"],
["g", "h", "i"],
["j", "k", "l"],
]
/**
* @param index {number}
* @returns number
*/
function calcLayerPosition(index) {
return index - activeLayer
}
</script>
<div class="radial">
{#each Array.from({length: layers}) as _, i}
<!--suppress Stylelint -->
<div
class="layer"
style="translate: -50% -50% {((i - activeLayer + 1) % 2) - 1}px; filter: brightness({1 -
Math.log(1 + Math.abs(i - activeLayer))})"
class:active={activeLayer === i}
>
<button on:click={() => (activeLayer = (activeLayer + 1) % layers)}>{i}</button>
<button>{i}</button>
<button>{i}</button>
<button>{i}</button>
</div>
{/each}
</div>
<style lang="scss">
$border-width: 18px;
$gap: 6px;
$size: 96px;
$scale-difference: 0.2;
.radial {
position: relative;
width: 0;
height: 0;
perspective: 3px;
}
.layer {
pointer-events: none;
position: absolute;
z-index: -1;
transform-style: preserve-3d;
translate: -50% -50% 0;
container: radial / size;
width: $size;
height: $size;
transition: all 250ms ease;
}
.layer.active {
pointer-events: all;
z-index: 1;
}
button {
cursor: pointer;
position: absolute;
display: flex;
width: 100cqw;
height: 100cqh;
padding: 5px;
font-family: "Noto Sans Mono", monospace;
font-size: 16px;
font-weight: 900;
color: var(--md-sys-color-on-surface-variant);
background: var(--md-sys-color-surface-variant);
border: none;
transition: all 250ms ease;
mask-image: url("$lib/assets/quater-ring.svg");
mask-size: 100% 100%;
&:hover {
color: var(--md-sys-color-on-tertiary);
background: var(--md-sys-color-tertiary);
}
&:nth-child(1) {
align-items: flex-start;
justify-content: center;
clip-path: polygon(50% 50%, 0 0, 100% 0);
}
&:nth-child(2) {
align-items: center;
justify-content: flex-end;
clip-path: polygon(50% 50%, 100% 0, 100% 100%);
}
&:nth-child(3) {
align-items: flex-end;
justify-content: center;
clip-path: polygon(50% 50%, 0 100%, 100% 100%);
}
&:nth-child(4) {
align-items: center;
justify-content: flex-start;
clip-path: polygon(50% 50%, 0 0, 0 100%);
}
}
</style>