feat: complete star trail background

This commit is contained in:
guoqi.sun 2024-02-11 03:33:44 +08:00
parent d60ed74930
commit 12195af6b0
5 changed files with 144 additions and 62 deletions

2
components.d.ts vendored
View File

@ -17,6 +17,8 @@ declare module 'vue' {
MyComponent: typeof import('./src/components/MyComponent.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
StarTrails: typeof import('./src/components/StarTrails.vue')['default']
StraTrails: typeof import('./src/components/StraTrails.vue')['default']
TheWelcome: typeof import('./src/components/TheWelcome.vue')['default']
WelcomeItem: typeof import('./src/components/WelcomeItem.vue')['default']
}

View File

@ -1,35 +1,21 @@
<script setup>
import MyComponent from './components/MyComponent.vue'
import StarTrails from './components/StarTrails.vue'
</script>
<template>
<div class="flex flex-col h-[100vh] justify-center items-center">
<MyComponent msg="Vue" />
<div
text="44px"
color="blue"
>
Unocss
<StarTrails />
<!-- <div f-c-c absolute h-100vh w-full left-0 top-0>
<div text-18 text-white>
小孙同学
</div>
<a-button type="primary">
Ant-Design-vue
</a-button>
<div class="flex h-[60px] justify-between items-center">
<RouterLink to="/" class="w-[80px]">
<div class="text-center">
Home
</div>
</RouterLink>
<RouterLink to="/about" class="w-[80px]">
<div class="text-center">
About
</div>
</RouterLink>
</div> -->
<div bg-black f-c-c h-100vh>
<div text-white>
正在开发中...
</div>
<RouterView />
</div>
</template>
<style lang="scss" scoped>
</style>

View File

@ -1,28 +1,11 @@
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
* {
padding: 0;
margin: 0;
}
// 浅色
@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
body {
font-family: pingfang sc, helvetica, arial, sans-serif;
font-size: 16px;
line-height: 1.6;
color: #333;
}

View File

@ -1,13 +0,0 @@
<script setup>
const props = defineProps({
msg: String,
})
</script>
<template>
<div>Hello {{ props.msg }}!</div>
</template>
<style lang="scss" scoped>
</style>

View File

@ -0,0 +1,124 @@
<script setup>
import { onMounted } from 'vue'
onMounted(() => {
// canvas show help
const help = document.createElement('canvas')
const show = document.getElementById('trails')
// showWidth showHeight
let showWidth, showHeight
// canvas
show.width = help.width = showWidth = show.offsetWidth
show.height = help.height = showHeight = show.offsetHeight
const longSide = Math.max(showWidth, showHeight)
// 使
help.width = longSide * 2.6
help.height = longSide * 2.6
//
const showContext = show.getContext('2d')
const helpContext = help.getContext('2d')
//
showContext.fillStyle = 'rgba(0,0,0,1)'
showContext.fillRect(0, 0, showWidth, showHeight)
//
function rand(Min, Max) {
return Min + Math.round(Math.random() * (Max - Min))
}
//
function randomColor() {
const r = rand(120, 255)
const g = rand(120, 255)
const b = rand(120, 255)
const a = rand(30, 100) / 100
return `rgba(${r},${g},${b},${a})`
}
//
const stars = []
//
function createStar() {
return {
x: rand(-help.width, help.width),
y: rand(-help.height, help.height),
size: 1.2,
color: randomColor(),
}
}
//
function drawStar() {
let count = stars.length
while (count--) {
const star = stars[count]
helpContext.beginPath()
helpContext.arc(star.x, star.y, star.size, 0, Math.PI * 2, true)
helpContext.fillStyle = star.color
helpContext.closePath()
helpContext.fill()
}
}
//
let drawTimes = 0
//
function loop() {
//
showContext.drawImage(help, -help.width / 2, -help.height / 2)
drawTimes++
if (drawTimes > 200 && drawTimes % 8 === 0) {
showContext.fillStyle = 'rgba(0,0,0,.04)'
showContext.fillRect(-(longSide * 3), -(longSide * 3), longSide * 6, longSide * 6)
}
//
showContext.rotate(0.025 * Math.PI / 180)
}
let count = 18000
while (count--)
stars.push(createStar())
drawStar()
//
if (showWidth < showHeight * 1.5)
showContext.translate(showWidth, showHeight)
else
showContext.translate(showWidth, 0)
function animate() {
window.requestAnimationFrame(animate)
loop()
}
animate()
// animate
window.addEventListener('resize', () => {
showWidth = show.offsetWidth
showHeight = show.offsetHeight
show.width = showWidth
show.height = showHeight
showContext.fillStyle = 'rgba(0,0,0,1)'
showContext.fillRect(0, 0, showWidth, showHeight)
})
})
</script>
<template>
<div h-100vh>
<canvas id="trails" wh-full />
</div>
</template>
<style lang="scss" scoped></style>