博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[AngularJS] Enable Animations Explicitly For A Performance Boost In AngularJS
阅读量:6230 次
发布时间:2019-06-21

本文共 953 字,大约阅读时间需要 3 分钟。

 

angular.module( "Demo" ).config(            function configureAnimate( $animateProvider ) {                // By default, the $animate service will check for animation styling                // on every structural change. This requires a lot of animateFrame-based                // DOM-inspection. However, we can tell $animate to only check for                // animations on elements that have a specific class name RegExp pattern                // present. In this case, we are requiring the "animated" class.                // --                // NOTE: I have personally seen a performance boost using this approach                // on some complex page. The AngularJS documentation also says that                // this can also be really beneficial for low-powered mobile devices,                // but I don't do much mobile.                $animateProvider.classNameFilter( /\banimated\b/ );            }        );
  • {
    { item }}
  •  

    转载地址:http://estna.baihongyu.com/

    你可能感兴趣的文章
    Curl命令
    查看>>
    汽车常识全面介绍 - 引擎详论
    查看>>
    如何获取和发送Http请求和相应
    查看>>
    电子商务网站数据分析常用指标(转)
    查看>>
    HashSet中实现不插入重复的元素
    查看>>
    操作系统学习基本概念汇总
    查看>>
    用户IP地址的三个属性的区别(HTTP_X_FORWARDED_FOR,HTTP_VIA,REM_addr
    查看>>
    漫画:鉴权与安全访问控制的技术血脉
    查看>>
    179. Largest Number
    查看>>
    Git命令行大全
    查看>>
    JSt中对象的prototype属性
    查看>>
    iPhone应用程序 将图片保存到相册实例
    查看>>
    给DropDownList添加ToolTip(title)属性
    查看>>
    redis性能测试
    查看>>
    程序员有趣的面试智力题(转)
    查看>>
    练就Java24章真经—你所不知道的工厂方法
    查看>>
    Android 应用兼容性最佳实践 | 中文教学视频
    查看>>
    Servlet第三篇【request和response简介、response的常见应用】
    查看>>
    Mybatis第五篇【Mybatis与Spring整合】
    查看>>
    优雅的类写法
    查看>>