mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
Improve transition between doc list and doc picker
This commit is contained in:
parent
a02dd3b7b4
commit
4becd25605
3 changed files with 17 additions and 6 deletions
|
@ -314,6 +314,13 @@ $.framify = (fn, obj) ->
|
|||
else
|
||||
fn
|
||||
|
||||
$.requestAnimationFrame = (fn) ->
|
||||
if window.requestAnimationFrame
|
||||
requestAnimationFrame(fn)
|
||||
else
|
||||
setTimeout(fn, 0)
|
||||
return
|
||||
|
||||
#
|
||||
# Miscellaneous
|
||||
#
|
||||
|
|
|
@ -20,7 +20,6 @@ class app.views.DocPicker extends app.View
|
|||
activate: ->
|
||||
if super
|
||||
@render()
|
||||
@findByTag('input')?.focus()
|
||||
app.appCache?.on 'progress', @onAppCacheProgress
|
||||
$.on @el, 'focus', @onDOMFocus, true
|
||||
return
|
||||
|
@ -47,9 +46,9 @@ class app.views.DocPicker extends app.View
|
|||
@html html + @tmpl('sidebarPickerNote') + @tmpl('sidebarSave')
|
||||
@refreshElements()
|
||||
|
||||
@delay -> # trigger animation
|
||||
@el.offsetWidth
|
||||
$.requestAnimationFrame =>
|
||||
@addClass '_in'
|
||||
@findByTag('input')?.focus()
|
||||
return
|
||||
|
||||
renderVersions: (docs) ->
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
background: $sidebarBackground;
|
||||
background-clip: content-box;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
-ms-overflow-style: none; // IE 10 doesn't support pointer-events
|
||||
@extend %user-select-none;
|
||||
|
@ -339,10 +340,12 @@
|
|||
//
|
||||
|
||||
._list-picker {
|
||||
opacity: 0;
|
||||
transition: .2s;
|
||||
> ._list, > ._list-item {
|
||||
opacity: 0;
|
||||
transition: .2s;
|
||||
}
|
||||
&._in { > ._list, > ._list-item { opacity: 1; } }
|
||||
|
||||
&._in { opacity: 1; }
|
||||
._list-item { cursor: pointer; }
|
||||
._list-sub > ._list-item { padding-left: 2.375rem; }
|
||||
}
|
||||
|
@ -378,6 +381,8 @@
|
|||
width: $sidebarWidth;
|
||||
background: $sidebarBackground;
|
||||
box-shadow: inset -1px 0 $sidebarBorder;
|
||||
-webkit-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
|
||||
@media #{$mediumScreen} { width: $sidebarMediumWidth; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue