forked from leftypol/leftypol
Add fireworks javascript and CSS
This commit is contained in:
parent
93e3b76b97
commit
b8dec91885
18 changed files with 1035 additions and 0 deletions
11
js/fireworks/loadfireworks.js
Normal file
11
js/fireworks/loadfireworks.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
$(document).on("ready", function() {
|
||||
function cycle() {
|
||||
setTimeout(function() {
|
||||
createFirework(100,200,8,7,null,null,null,null,true,true);
|
||||
cycle();
|
||||
}, 1000 + Math.floor(Math.random() * 8000));
|
||||
}
|
||||
cycle();
|
||||
}
|
||||
);
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue