通过 100+ 技巧学习 Nuxt!

nuxt-particles

使用 tsParticles 轻松为你的 Nuxt 项目添加粒子动画

Nuxt Particles

npm versionnpm downloadsLicenseNuxt

在你的 Nuxt 项目中使用 tsParticles 运行轻量级、高度可定制的粒子模拟。

特性

  • Nuxt 3 构建
  • 默认懒加载
  • 内置完整版、精简版和基础版捆绑包,或
  • 使用自定义捆绑包以获得额外的性能
  • 所有这一切只需一个组件!

快速设置

  1. nuxt-particles 依赖项添加到你的项目
# Using pnpm
pnpm add -D nuxt-particles

# Using yarn
yarn add --dev nuxt-particles

# Using npm
npm install --save-dev nuxt-particles
  1. nuxt-particles 添加到 nuxt.config.tsmodules 部分
export default defineNuxtConfig({
  modules: [
    'nuxt-particles'
  ]
})

就是这样! 你现在可以在你的应用程序中使用 <NuxtParticles> 组件了! ✨

阅读文档以获取更多信息,包括配置和优化选项。关于如何配置粒子本身的文档可在 tsparticles 的网站上找到。

示例

<template>
  <NuxtParticles
    id="tsparticles"
    url="/path/to/particles.json"
    @load="onLoad"
  ></NuxtParticles>
  
  <!-- or -->
  
  <NuxtParticles
    id="tsparticles"
    :options="options"
    @load="onLoad"
  ></NuxtParticles>
</template>

<script setup lang="ts">
import type { Container } from '@tsparticles/engine'

const options = {
  // See https://particles.js.org/docs/interfaces/tsParticles_Engine.Options_Interfaces_IOptions.IOptions.html
}

const onLoad = (container: Container) => {
  // Do something with the container
  container.pause()
  setTimeout(() => container.play(), 2000)
}
</script>

开发

# Install dependencies
pnpm install

# Generate type stubs
pnpm run dev:prepare

# Develop with the playground
pnpm run dev

# Build the playground
pnpm run dev:build

# Run ESLint
pnpm run lint

# Release new version
pnpm run release