当用户不在页面顶部时,任何人都知道这个网站如何将导航栏弹回到顶部?
这是我到目前为止所得到的。
//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];
这有效,但我似乎无法获得反弹效果:( 有人有什么想法吗?
谢谢大家:)
答案 0 :(得分:0)
CSS transition-timing-function
属性的值为ease-in
。
更多:https://developer.mozilla.org/en-US/docs/Web/CSS/transition-timing-function