1.0.1 • Published 6 years ago

vue-colorful-particles v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

vue-colorful-particles

A Vue.js project

Description

Vue implementation of sketch.js/particles

this project demo

Use

npm install vue-colorful-particles --save

Set some of the following parameters and Pass the object to the component through props config

{
    // enable spawn particles on mouse event
    mouse_move: true,
    mouse_click: true,
    
    // enable spawn particles on some fix point
    fix_position: true,
    position_list: [[100, 100], [200, 423], ...],
    spawn_interval: 200, 

    // set a list colors from which particle would randomly choose a color
    colors: ['#000', '#123456', ...],

    // in every spawn, number of particles generated is in the range of `spawn_range`
    spawn_range: [1, 4],

    // new generated particles radius would be in the range of `radius_range`
    radius_range: [10, 20],

    // in every time quantum, particle would shrink in a fixed ratio 
    radius_decrease_speed: 0.96,

    // maximum particles allowd
    max_particles: 200,

    // background color
    background: '#222'
}