Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to recreate an effect like on http://ellislab.com/codeigniter where there are sparks flying in the background of their orange "hero" lead in.

I looked at the jQuery behind it and looks complex, are there any libraries out there or anything "template / tutorial" wise you could point in the direction of?

Thanks

share|improve this question

1 Answer

Well, the nice thing about JavaScript is that it's client side, so you can see exactly how they do it. It's a pretty simple bit of javascript, and they just use css to style the sparks. Here's the main bunch of code that runs the sparks:

// Let some sparks fly in a somewhat randomly timed fashion
          this.startSpark = function(){
            if (me.sparkInterval != null) return;
            me.sparkInterval = setInterval(function(){
              var opac = Math.max(.15, Math.random() - .4),
                  size = Math.floor(Math.random() * 120 + 30),
                  spark = $('<div/>').addClass('spark')
                    .css({
                      'width': size,
                      'height': size,
                      'opacity': opac, 
                      '-moz-opacity': opac
                    });

              $wrapper.append(
                spark
                .css(
                  {
                    "bottom": "-100px",
                    "left": (Math.random() * 100) + "%"
                  }
                )
                .animate(
                  {
                    "bottom": "800px",
                  },
                  Math.floor(Math.random()*3000+1000),
                  "linear",
                  function(){
                    $(this).remove(); // don't need the spark if we're in the dark
                  }
                )
              )
            }, 500)
          }

Basically, they create a 'spark' div, randomly set the opacity, width and height, and position, append it to the DOM, then randomly animate it, and when the animation is done, they remove it from the DOM. Here's the whole source file if you're not sure how to open inspect element or firebug: http://ellislab.com/asset/js/ci.js

I'm afraid I couldn't find any "animate random sparks" jQuery plugin for ya. Just count this as an adventure. Get in knee deep, learn some JavasScript, break stuff, and have fun! I'm sure with a little work and learning, you can get this working.

share|improve this answer
They use a file i have never heard of... ellislab.com/asset/css/img/products/ci-spark.svg what does this do? – Lawrence Howlett Dec 14 '12 at 10:50
SVG stands for "Scalable Vector Graphic." It's a type of vector graphic that is infinitely scalable. He uses that for the sparks. SVGs work the same way an Adobe Illustrator file works, but it's a non-proprietary format. Modern browsers can embed and use these files to create infinitely scalable graphics. Such is the case here. – James Rasmussen Dec 14 '12 at 10:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.