EasyUI Forum

General Category => General Discussion => Topic started by: thiago_brum on July 13, 2016, 07:48:54 AM



Title: mobile go without animation
Post by: thiago_brum on July 13, 2016, 07:48:54 AM
How can I get mobile.go without animation?


Title: Re: mobile go without animation
Post by: stworthy on July 13, 2016, 05:51:39 PM
Please try to override the 'm-in' and 'm-out' CSS definitions.
Code:
<style>
.m-in{
    -webkit-animation-duration: 1ms;
}
.m-out{
    -webkit-animation-duration: 1ms;
}
</style>


Title: Re: mobile go without animation (Solved)
Post by: thiago_brum on July 14, 2016, 04:32:00 AM
Perfect. Thanks!!!