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;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: all 2s 2s ease-in-out;
transition: all 2s 2s ease-in-out;
-webkit-transition: all .8s .6s cubic-bezier(.55, .055, .675, .19);
transition: all .8s .6s cubic-bezier(.55, .055, .675, .19);
}
#toggle-header-bar {
cursor: n-resize;

View File

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