滚动时导航栏的弹跳/缓动动画

时间:2016-02-15 07:17:04

标签: javascript jquery css jquery-animate navbar

当用户不在页面顶部时,任何人都知道这个网站如何将导航栏弹回到顶部?

http://whois.domaintools.com/

这是我到目前为止所得到的。

//create the NSDateFormatter first
NSDateFormatter *df = [NSDateFormatter alloc]init];
// set the date format based on your String
df.dateFormat = @"yyyy-MM-dd HH:mm:ss";
// convert the string to date
NSDate *date = [df dateFromString:self.todayRecord.datetime];
// set the final dateformat what the output do you need
df.dateFormat = @"yyyy-MM-dd HH:mm";
// in here you get final output on String
NSString *finalString = [df StringFromdate:date];
// in here you get final output on date 
NSDate *FinalDate = [df dateFromString:finalString];

这有效,但我似乎无法获得反弹效果:( 有人有什么想法吗?

谢谢大家:)

1 个答案:

答案 0 :(得分:0)

CSS transition-timing-function属性的值为ease-in

更多:https://developer.mozilla.org/en-US/docs/Web/CSS/transition-timing-function

这是一个演示:https://jsfiddle.net/os1Ld8fj/1/