Add fireworks javascript and CSS

This commit is contained in:
Benjamin Southall 2017-03-03 15:39:28 +09:00
parent 93e3b76b97
commit b8dec91885
18 changed files with 1035 additions and 0 deletions

View 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();
}
);