mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
Fix flickering autonav animation
- use `transition: left` instead of `transform: translate3d` - fixes issue where translate3d moves the element immediately then animates resulting in invisible hit areas that cause unexpected hover behaviour whilst animation is in progress - translate3d is sometimes faster as it doesn't need to constantly re-calculate layout, however in this case the element is positon:absolute and we're only animating opaque elements so the benefit is marginal. Tested on Late-2012 13" retina MBP and framerate was consistently 100fps or higher.
This commit is contained in:
parent
26f7c5e0ad
commit
e3f34c97a7
1 changed files with 4 additions and 6 deletions
|
@ -289,13 +289,11 @@
|
|||
.gh-autonav .gh-nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
left: -220px;
|
||||
z-index: 1000;
|
||||
width: 235px;
|
||||
height: 100%;
|
||||
transition: transform 0.20s;
|
||||
/* translate3d for GPU accelerated animation - http://bit.ly/1EY1Xhx */
|
||||
transform: translate3d(-220px,0,0);
|
||||
transition: left 0.20s;
|
||||
}
|
||||
|
||||
/* THE FUTURE: Super sexy background blur for Webkit - http://cl.ly/b1rG */
|
||||
|
@ -310,8 +308,8 @@
|
|||
|
||||
/* Bring it back on hover */
|
||||
.gh-autonav .gh-nav.open {
|
||||
transition: transform 0.15s;
|
||||
transform: translate3d(0,0,0);
|
||||
left: 0;
|
||||
transition: left 0.15s;
|
||||
}
|
||||
|
||||
/* Move main content over for the closed-nav trigger bar */
|
||||
|
|
Loading…
Add table
Reference in a new issue