* docs: Animations * docs: add confetti gun * docs: update basic example on home page * docs(deps): Add stackblitz sdk to deps * chore: update yarn.lock * docs: use vue repl * docs: remove stackblitz sdk * docs: basic repl example * docs: use repl for examples/index.md (basic example) * docs: pass ext to repl * docs: add copy plugin * docs: use import map instead of dynamic imports * docs: use repl for custom node example * docs: hide repl errors * docs: use repl for custom connectionline example * docs: use repl for edges example * docs: exclude repl from ssr * docs: use repl for nested example * docs: use repl for stress example * docs: rename customNode to custom-node * docs: use repl for update-edge example * docs: use repl for update-node example * docs: use repl for validation example * docs: use repl for save-restore example * docs: scale down minimap in repl examples * docs: use repl for dnd example * docs: use repl for empty example * docs: use repl for hidden example * docs: use repl for interaction example * docs: use repl for multi example * docs: add pinia example with stackblitz * docs: update basic example * docs: update examples * docs: remove transition from intro * docs: update features * update: README.md * docs: scope css
63 lines
1.1 KiB
Vue
63 lines
1.1 KiB
Vue
<script lang="ts" setup>
|
|
import { breakpointsTailwind, useBreakpoints } from '@vueuse/core'
|
|
import Blobity from 'blobity'
|
|
import Intro from './flows/Intro.vue'
|
|
|
|
const dark = useDark({
|
|
selector: 'html',
|
|
})
|
|
|
|
const breakpoints = useBreakpoints(breakpointsTailwind)
|
|
|
|
onMounted(() => {
|
|
if (!breakpoints.isSmaller('md')) {
|
|
const blobity = new Blobity({
|
|
color: dark.value ? '#ffffff' : '#000000',
|
|
invert: true,
|
|
zIndex: 0,
|
|
magnetic: false,
|
|
dotColor: '#10b981',
|
|
radius: 8,
|
|
focusableElementsOffsetX: 5,
|
|
focusableElementsOffsetY: 4,
|
|
mode: 'bouncy',
|
|
focusableElements:
|
|
'[data-blobity], a:not([data-no-blobity]), button:not([data-no-blobity]), [data-blobity-tooltip], .back-to-top, .intro',
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
blobity.destroy()
|
|
})
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative h-[90vh] md:h-[75vh]">
|
|
<Intro />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
button:focus {
|
|
outline: none;
|
|
}
|
|
|
|
h1 {
|
|
@apply text-xl lg:text-4xl mb-4 font-bold;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-lg lg:text-2xl mb-4 font-semibold;
|
|
}
|
|
|
|
p {
|
|
@apply text-md lg:text-lg;
|
|
}
|
|
|
|
p ~ h1,
|
|
p ~ h2 {
|
|
@apply mt-6;
|
|
}
|
|
</style>
|