small fireworks changes

This commit is contained in:
keyan 2023-07-03 19:04:07 -05:00
parent b6628eb159
commit 3d093d45f3
2 changed files with 10 additions and 6 deletions

View File

@ -40,7 +40,7 @@ export function FireworksProvider ({ children }) {
quantity: 1
},
size: {
width: 50,
width: 10,
height: 0
},
position: {
@ -165,7 +165,10 @@ const fireworksOptions = ['#ff595e', '#ffca3a', '#8ac926', '#1982c4', '#6a4c93']
},
speed: { min: 5, max: 15 },
direction: 'none',
outModes: 'destroy'
outMode: {
top: 'destroy',
default: 'bounce'
}
}
}
})
@ -178,7 +181,7 @@ const particlesOptions = (theme) => ({
destroy: {
mode: 'split',
bounds: {
top: { min: 5, max: 50 }
top: { min: 5, max: 40 }
},
split: {
sizeOffset: false,
@ -228,7 +231,6 @@ const particlesOptions = (theme) => ({
inverse: true,
maxSpeed: 100
},
direction: 'top-center',
speed: {
min: 10,
max: 20
@ -246,6 +248,7 @@ const particlesOptions = (theme) => ({
})
const darkOptions = {
fullScreen: { enable: true },
detectRetina: true,
background: {
color: '#000'
@ -257,6 +260,7 @@ const darkOptions = {
}
const lightOptions = {
fullScreen: { enable: true },
detectRetina: true,
background: {
color: '#fff'

View File

@ -3,6 +3,6 @@
position: fixed;
top: 0;
left: 0;
width: 100%;
height: vh;
width: 100vw;
height: 100vh;
}