All Projects → Glideh → jquery-particles-burst

Glideh / jquery-particles-burst

Licence: MIT license
Lightweight particles generator

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to jquery-particles-burst

fireworks-js
🎆 A simple fireworks library! Ready to use components available for React, Vue 3, Svelte, Angular, Preact, Solid, and Web Components.
Stars: ✭ 550 (+2519.05%)
Mutual labels:  particles
kolorwheel.js
🌈 Color palette generator JavaScript library
Stars: ✭ 37 (+76.19%)
Mutual labels:  jquery-plugin
jQuery-Facebook-Stream
Display all your wall post, comments & likes in groups or fans page.
Stars: ✭ 24 (+14.29%)
Mutual labels:  jquery-plugin
jQuery-Freeze-Table-Column-and-Rows
This is a jQuery plugin that can make table rows and columns not scroll. It can take a given HTML table object and set it so it can freeze a given number of columns or rows or both, so the fixed columns or rows do not scroll. The rows to be frozen should be placed in the table head section. It can also freeze rows and columns combined with using…
Stars: ✭ 20 (-4.76%)
Mutual labels:  jquery-plugin
FieldsLinker
Designed for matching files headers to database fields during the process importing. Allows drawing links between elements of 2 lists
Stars: ✭ 18 (-14.29%)
Mutual labels:  jquery-plugin
cazary
jQuery plugin of WYSIWYG editor that aims for fast, lightweight, stylish, customizable, cross-browser, and multi-language.
Stars: ✭ 12 (-42.86%)
Mutual labels:  jquery-plugin
Mirheo
Computational Microfluidics
Stars: ✭ 34 (+61.9%)
Mutual labels:  particles
jquery-sina-emotion
一个用来方便快速地创建新浪微博表情选择对话框的jQuery插件。
Stars: ✭ 56 (+166.67%)
Mutual labels:  jquery-plugin
jquery-profile
jQuery plugin to profile calls to jQuery selectors.
Stars: ✭ 39 (+85.71%)
Mutual labels:  jquery-plugin
Facebook-Album-Browser
jQuery plugin for browsing public albums of a Facebook account
Stars: ✭ 76 (+261.9%)
Mutual labels:  jquery-plugin
jquery-transfer
☑️ A jQuery plugin that is a shuttle box
Stars: ✭ 41 (+95.24%)
Mutual labels:  jquery-plugin
jqScribble
A touch enabled jquery plugin for drawing on a canvas
Stars: ✭ 72 (+242.86%)
Mutual labels:  jquery-plugin
jquery-custom-select
Custom Select jQuery Plugin
Stars: ✭ 27 (+28.57%)
Mutual labels:  jquery-plugin
jquery-datepicker
A full-featured datepicker jquery plugin
Stars: ✭ 35 (+66.67%)
Mutual labels:  jquery-plugin
FlockModifier
A Cinema 4D plugin that implements a flocking/swarming simulation for the C4D standard particle system using a distributed behavioral model.
Stars: ✭ 25 (+19.05%)
Mutual labels:  particles
jquery-linechart
JQuery plugin for creating charts
Stars: ✭ 42 (+100%)
Mutual labels:  jquery-plugin
jquery-slidescrollpanel
Create sliding scroll panels that slide in by touch, trackpad and scrolling
Stars: ✭ 16 (-23.81%)
Mutual labels:  jquery-plugin
JJ CAMP
JavaScript & jQuery 정복 CAMP × 패스트캠퍼스
Stars: ✭ 19 (-9.52%)
Mutual labels:  jquery-plugin
fixedThead
A jQuery plug-in for fixed table header
Stars: ✭ 21 (+0%)
Mutual labels:  jquery-plugin
decaylanguage
Package to parse decay files, describe and convert particle decays between digital representations.
Stars: ✭ 34 (+61.9%)
Mutual labels:  particles

jQuery Particules Burst

Screenshot

This plugin generates particules from an element. Images are appended to the DOM then fade in, animate randomly, fade out. Multiple calls generate the particule effect.

Demo

You can play with the plugin here

Installation

Install the package with Bower

$ bower install jquery-particles-burst

If you don't use Bower, simply copy the files from dist/

Include the required resources in your html

<link rel="stylesheet" href="jquery-particles-burst.css" />
<script src="vendors/jquery.min.js"></script>
<script src="vendors/jquery-particles-burst.min.js"></script>

Usage

Then you can generate particules from any element

<div id="emitter"></div>
<script>
  $('#emitter').pburst('burst_part', 20);
</script>

This will generate 20 stars (the default particle sprite) from #emitter

Methods

create_part

Makes a particle appear on the emitter, offset in a random direction and disappear

$('#emitter').pburst('create_part');

burst_part(number)

parameters: number, the number of particles to burst

Creates number of particles by calling create_part

$('#emitter').pburst('burst_part', 20);

Options

particle

default: 'star.png'

Specify your image as particle

$('#emitter').pburst({particle: 'your_sprite.png'});

partoffset

default: 150

Maximum translation radius in pixel (randomized from 0)

$('#emitter').pburst({partoffset: 200});

duration

default: 1000

Maximum duration of the translation in milliseconds (randomized from 0)

$('#emitter').pburst({duration: 2000});

frequency

default: 100

Maximum duration between each particle in milliseconds (randomized from 0)

$('#emitter').pburst({duration: 500});
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].