最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

"puff of smoke" effect javascript sprite animation - Stack Overflow

programmeradmin2浏览0评论

This code and animation works perfectly on jQuery 1.4.4 and below, but not on later versions. Could anyone shed some light on this issue and help with a version that works with latest jQuery. I have provided a fiddle below.

/

The poof effect basically relies on adjusting the background-position to create a css sprite animation, but it borked on new jQuery.

This code and animation works perfectly on jQuery 1.4.4 and below, but not on later versions. Could anyone shed some light on this issue and help with a version that works with latest jQuery. I have provided a fiddle below.

http://jsfiddle/Y7Ek4/10/

The poof effect basically relies on adjusting the background-position to create a css sprite animation, but it borked on new jQuery.

Share Improve this question edited Aug 7, 2012 at 3:24 WendiKidd 4,3635 gold badges35 silver badges50 bronze badges asked Apr 13, 2012 at 21:04 fmalinafmalina 6,3104 gold badges39 silver badges47 bronze badges 2
  • You need a plugin for this. See bugs.jquery./ticket/7448 – j08691 Commented Apr 13, 2012 at 21:12
  • possible duplicate of Why can't I animate backgroundPosition past jquery 1.4.4? – j08691 Commented Apr 13, 2012 at 21:12
Add a ment  | 

2 Answers 2

Reset to default 9

jQuery's animate is no longer appropriate for sprite animations. I had to roll my own using setTimeout. The effect is inspired by the one used for removing items from OS X dock.

The sprite:

The relevant JS code:

function animatePoof() {
    var bgTop = 0,
        frame = 0,
        frames = 6,
        frameSize = 32,
        frameRate = 80,
        puff = $('#puff');
    var animate = function(){
        if(frame < frames){
            puff.css({
                backgroundPosition: "0 "+bgTop+"px"
            });
            bgTop = bgTop - frameSize;
            frame++;
            setTimeout(animate, frameRate);
        }
    };

    animate();
    setTimeout("$('#puff').hide()", frames * frameRate);
}

Full working example including HTML and CSS: http://jsfiddle/Y7Ek4/22/

You could use this (mine) library too: Audero Smoke Effect. It works with the latest version of jQuery.

发布评论

评论列表(0)

  1. 暂无评论