Before you ask please READ THIS

It is possible to disable animations on mobile?

edited May 2014 in Superior Posts: 66
Hi,

It is possible to disable animation effects when browsing with mobile or under a certain resolution?

Thanks!

Comments

  • AirAir
    edited May 2014 Posts: 10,970
    For CSS animation you could use such dirty code(custom CSS)


    @media screen and (max-width: 600px) {
    /* CANCEL TRANSITIONS */
    *{
    -webkit-transition: none !impotrant;
    -moz-transition: none !impotrant;
    transition: none !impotrant;
    }
    }
    For JS animations if will be harder.

    With regards.
    Post edited by Air on
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion