All Projects → OXOYO → X-Particles-Vue

OXOYO / X-Particles-Vue

Licence: MIT License
A Vue.js particles plugin base on particles.js

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects
HTML
75241 projects

Projects that are alternatives of or similar to X-Particles-Vue

reactparticles.js
Independently configurable react component for particles.js
Stars: ✭ 24 (+60%)
Mutual labels:  particles, particlesjs
Tsparticles
tsParticles - Easily create highly customizable particles animations and use them as animated backgrounds for your website. Ready to use components available for React.js, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno, Solid, Riot and Web Components.
Stars: ✭ 2,694 (+17860%)
Mutual labels:  particles, particlesjs
Aboria
Enables computations over a set of particles in N-dimensional space
Stars: ✭ 83 (+453.33%)
Mutual labels:  particles
nBody
GPU-accelerated N-Body particle simulator with visualizer.
Stars: ✭ 28 (+86.67%)
Mutual labels:  particles
SuperParticles
Amazing CPU-friendly particle network animations
Stars: ✭ 32 (+113.33%)
Mutual labels:  particles
spark-particle-uv
Demo of how to sample the camera texture and map it to particles.
Stars: ✭ 25 (+66.67%)
Mutual labels:  particles
v-tostini
Toast plugin for Vue.js 2.x
Stars: ✭ 12 (-20%)
Mutual labels:  vue-plugin
NovaShader
Multi-functional shader for the Particle System that supports Universal Render Pipeline (URP) of Unity.
Stars: ✭ 448 (+2886.67%)
Mutual labels:  particles
Newtonian-Particle-Simulator
C# OpenGL Particle Simulation, GPU accelerated
Stars: ✭ 131 (+773.33%)
Mutual labels:  particles
Galaxia-Runtime
Galaxy generator for Unity 3D, with Custom Particle Distributors, DirectX 11 Particles and Highly customization, curve driven Generation.
Stars: ✭ 36 (+140%)
Mutual labels:  particles
Godot-Plugin-Particles-Renderer
A Godot plugin to render particles into a sprite sheet
Stars: ✭ 32 (+113.33%)
Mutual labels:  particles
power-mode-input
PowerModeInput can make your text input box more compelling
Stars: ✭ 68 (+353.33%)
Mutual labels:  particles
vue-methods-promise
Let Vue methods support return Promise
Stars: ✭ 35 (+133.33%)
Mutual labels:  vue-plugin
sparkler
Modular Macro-powered Particle System for haxe
Stars: ✭ 16 (+6.67%)
Mutual labels:  particles
vue-shell
Component VueJS to simulate a terminal.
Stars: ✭ 36 (+140%)
Mutual labels:  vue-plugin
vue-web-storage
Vue.js plugin for local storage and session storage (1.8 kb min+gz) 💾
Stars: ✭ 85 (+466.67%)
Mutual labels:  vue-plugin
vuejs-emoji
vue2.x emoji plugin, autoload fontawesome
Stars: ✭ 32 (+113.33%)
Mutual labels:  vue-plugin
SPConfetti
Show the confetti only when the user is having fun, and if not having fun, don't show it.
Stars: ✭ 187 (+1146.67%)
Mutual labels:  particles
vue-unique-id
Component and HTML unique id generation plugin for Vue.js
Stars: ✭ 46 (+206.67%)
Mutual labels:  vue-plugin
vue-uuid
Add UUID to Vue instance.
Stars: ✭ 55 (+266.67%)
Mutual labels:  vue-plugin

x-particles-vue

Version License NPM downloads Downloads JS gzip size

A Vue.js particles plugin base on particles.js .

Example

# git clone https://github.com/OXOYO/X-Particles-Vue.git

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

Usage

## Packages install
npm install x-particles --save

## main.js
import XParticles from 'x-particles'

Vue.use(XParticles)

## App.vue
<style lang="less">
  .particles-background {
    background: #383838;
    height: 100%;
    width: 100%;
  }
</style>

<template>
  <div id="app" class="layout">
    <x-particles id="myParticles" class="particles-background" :config="config"></x-particles>
  </div>
</template>

<script>
  import defConfig from './config/default.js'
  //  import defConfig from './config/nasa.js'
  //  import defConfig from './config/bubble.js'
  //  import defConfig from './config/snow.js'

    export default {
      name: 'app',
      data () {
        return {
          config: {}
        }
      },
      created: function () {
        let _t = this

        _t.config = defConfig
      }
    }
<script>

Preview

Demo

XParticles

Links

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].