Better header hover-out transition. See b36b9540d366c882a92a2b8a23270cb7a3b02343

This commit is contained in:
Nicolas Stepien 2013-03-12 23:55:23 +01:00
parent d1f0566dab
commit c602d39d06
3 changed files with 6 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -126,8 +126,8 @@ a[href="javascript:;"] {
margin-bottom: -1em; margin-bottom: -1em;
-webkit-transform: translateY(-100%); -webkit-transform: translateY(-100%);
transform: translateY(-100%); transform: translateY(-100%);
-webkit-transition: all 2s 2s ease-in-out; -webkit-transition: all .8s .6s cubic-bezier(.55, .055, .675, .19);
transition: all 2s 2s ease-in-out; transition: all .8s .6s cubic-bezier(.55, .055, .675, .19);
} }
#toggle-header-bar { #toggle-header-bar {
cursor: n-resize; cursor: n-resize;

View File

@ -300,15 +300,15 @@ Main =
return return
initFeature = (name, module) -> initFeature = (name, module) ->
c.time "#{name} initialization" # c.time "#{name} initialization"
try try
module.init() module.init()
catch err catch err
Main.handleErrors Main.handleErrors
message: "\"#{name}\" initialization crashed." message: "\"#{name}\" initialization crashed."
error: err error: err
finally # finally
c.timeEnd "#{name} initialization" # c.timeEnd "#{name} initialization"
# c.time 'All initializations' # c.time 'All initializations'
initFeature 'Polyfill', Polyfill initFeature 'Polyfill', Polyfill