gpt4 book ai didi

jquery spritefy 暂停和重新启动

转载 作者:行者123 更新时间:2023-12-01 07:29:00 24 4
gpt4 key购买 nike

我正在使用这个插件:http://www.spritely.net/谁能告诉我为什么变量 $sprite 不重新执行?

function animate_header() {
var $sprite = $('#header')
.sprite({
fps: 30,
no_of_frames: 4,
// the following are optional: new in version 0.6...
start_at_frame: 1,
rewind: false,
on_last_frame: function(obj) {
// you could stop the sprite here with, e.g.
obj.spStop();
}
})
.active();
}
var init = setInterval("animate_header()", 1000);

我也尝试过这个:

function animate_header() {
$('#header')
.sprite({
fps: 30,
no_of_frames: 4,
// the following are optional: new in version 0.6...
start_at_frame: 1,
rewind: false,
on_last_frame: function(obj) {
// you could stop the sprite here with, e.g.
obj.spStop();
}
})
.active();
}
var init = setInterval("animate_header()", 1000);

该函数本身每秒执行一次。但 Sprite 却没有。

最佳答案

这对我有用。我首先设置选项,然后使用 spStart 函数循环它。

$('#header') 
.sprite({
fps: 30,
no_of_frames: 4,
start_at_frame: 1,
rewind: false,
on_last_frame: function(obj) {
// you could stop the sprite here with, e.g.
obj.spStop();
}
});

setInterval ( "$('#header').spStart()", 1000 );

关于jquery spritefy 暂停和重新启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7573640/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com