如果您看一下:http://www.neotokio.it/ 我正在寻找服务下“气泡”消退的效果?是否存在jquery插件或类似的东西来实现这种效果?
答案 0 :(得分:1)
它使用Raphael js动画:
答案 1 :(得分:1)
这就是他们在标题中淡出的方式
function fadeInTitle() {
if (PO.oldIE || PO.iPhone || PO.android) {
return;
}
var counter = 0;
$('.head').each(function() {
var mTop = $(this).css('marginTop');
//set height so animations don't knock it out
$(this).css({
'marginTop': parseInt(mTop) - 20
});
$(this).delay(1000 + (200 * counter)).animate({
opacity: 1,
marginTop: mTop
}, 1000, 'linear');
counter++;
});
}
他们使用Raphael的行