开发者

Event when CSS is done

At a certain stage, I am applying CSS to a section of my page.

Is there an event one can get once the re-layout has comp开发者_开发百科leted?


You can define and trigger custom events:

Binding the custom event:

$("#section").bind("layoutchange", function() {
    // stuff to do when the layout changes
});

Triggering the custom event:

$("#secton").css({propertyX: otherValue }).trigger("layoutchange");

However, this custom "layoutchange" event is not related to the actual reflow being completed, but one can assume that the reflow is fast enough, so that by the time you execute the handler it has been completed.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜