Make background support not being full page
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 59s
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 59s
This commit is contained in:
parent
a4e47f244f
commit
831060a57e
2 changed files with 43 additions and 30 deletions
|
@ -1,5 +1,4 @@
|
|||
<template>
|
||||
<div class="background">
|
||||
<TresCanvas>
|
||||
<TresOrthographicCamera ref="camera" :position="[0, 0, 10]" />
|
||||
<TresGroup ref="blobRef">
|
||||
|
@ -9,16 +8,14 @@
|
|||
</TresMesh>
|
||||
</TresGroup>
|
||||
<TresAmbientLight :intensity="1" />
|
||||
<OrbitControls />
|
||||
</TresCanvas>
|
||||
</div>
|
||||
<div ref="resizeListener" class="resize-listener" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed, ref, shallowRef, onMounted, onUnmounted, watch } from "vue";
|
||||
import { TresCanvas, useLoader, useRenderLoop } from '@tresjs/core';
|
||||
import { SVGLoader } from "three/examples/jsm/loaders/SVGLoader.js";
|
||||
import OrbitControls from './OrbitControls.vue';
|
||||
import noise from "./noise.glsl?raw";
|
||||
import { AdditiveBlending, Vector2 } from "three";
|
||||
|
||||
|
@ -29,13 +26,16 @@ const { paths } = await useLoader(SVGLoader, '/circuit-board.svg');
|
|||
const shapes = paths.map(path => SVGLoader.createShapes(path)).reduce((acc, curr) => [...acc, ...curr]);
|
||||
|
||||
// Handle canvas size
|
||||
const width = ref(window.innerWidth);
|
||||
const height = ref(window.innerHeight);
|
||||
const width = ref(0);
|
||||
const height = ref(0);
|
||||
const rows = computed(() => Math.ceil(height.value / 304));
|
||||
const cols = computed(() => Math.ceil(width.value / 304));
|
||||
const resizeObserver = new ResizeObserver(updateSize);
|
||||
const resizeListener = ref<Element | null>(null);
|
||||
function updateSize() {
|
||||
width.value = window.innerWidth;
|
||||
height.value = window.innerHeight;
|
||||
const rect = resizeListener.value?.getBoundingClientRect();
|
||||
width.value = rect?.width ?? 0;
|
||||
height.value = rect?.height ?? 0;
|
||||
}
|
||||
watch([width, height, camera], ([width, height, camera]) => {
|
||||
if (camera) {
|
||||
|
@ -70,18 +70,19 @@ function handleMouseLeave(event: MouseEvent) {
|
|||
|
||||
// Setup window listeners
|
||||
onMounted(() => {
|
||||
window.addEventListener("resize", updateSize);
|
||||
if (resizeListener.value != null) {
|
||||
resizeObserver.observe(resizeListener.value);
|
||||
}
|
||||
window.addEventListener("mousemove", updateMousePos);
|
||||
window.addEventListener("mouseout", handleMouseLeave);
|
||||
});
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener("resize", updateSize);
|
||||
window.removeEventListener("mousemove", updateMousePos);
|
||||
window.removeEventListener("mouseout", handleMouseLeave);
|
||||
});
|
||||
|
||||
// Shaders
|
||||
const blobRef = shallowRef(null);
|
||||
const blobRef = shallowRef<Element | null>(null);
|
||||
|
||||
const uniforms = {
|
||||
uTime: { value: 0 },
|
||||
|
@ -124,13 +125,13 @@ onLoop(({ elapsed }) => {
|
|||
</script>
|
||||
|
||||
<style scoped>
|
||||
.background {
|
||||
.resize-listener {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
top: 0px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: -1;
|
||||
overflow: hidden;
|
||||
right: -4px;
|
||||
bottom: 5px;
|
||||
z-index: -10;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
<NolebaseHighlightTargetedHeading />
|
||||
<ClientOnly>
|
||||
<Suspense>
|
||||
<div class="background">
|
||||
<Background />
|
||||
</div>
|
||||
</Suspense>
|
||||
</ClientOnly>
|
||||
</template>
|
||||
|
@ -28,6 +30,16 @@ import Background from './Background.vue'
|
|||
</script>
|
||||
|
||||
<style scoped>
|
||||
.background {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: -1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 2em;
|
||||
z-index: 26;
|
||||
|
|
Loading…
Reference in a new issue