R
R
Roman Ogarkov2016-09-28 18:18:39
css
Roman Ogarkov, 2016-09-28 18:18:39

How to optimize css3 animation on older devices?

Tell me how you optimize CSS3 animation for older mobile devices.
The effects of the exit menu are terribly slow

.quest-aside
  position: fixed
  top: 87px
  bottom: 0
  width: 310px
  left: -310px
  z-index: 10001
  background-position: center -89px
  +transition-property(left)
  +transition-duration(1s)
  overflow: auto
  &.active
    left: 0

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
kn1ght_t, 2016-09-28
@ogarich89

no need to animate positioning, animate via transform translate

D
Denis Ineshin, 2016-09-28
@IonDen

No need to animate anything in older browsers. There effects should be simple, on/off. No intermediate animations. Everything slows down for people anyway, ancient computers can hardly pull modern sites, and then there’s animation. Nail in the coffin.

S
shell1989, 2016-09-30
@shell1989

animate via transform translate

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question