您好,欢迎访问一九零五行业门户网

H5的定时器requestAnimationFrame使用技巧

这次给大家带来h5的定时器requestanimationframe使用技巧,h5定时器requestanimationframe使用的注意事项有哪些,下面就是实战案例,一起来看一下。
在requestanimationframe出现之前,我们一般都用settimeout和setinterval,那么html5为什么新增一个requestanimationframe,他的出现是为了解决什么问题?
优势与特点:
1)requestanimationframe会把每一帧中的所有dom操作集中起来,在一次重绘或回流中就完成,并且重绘或回流的时间间隔紧紧跟随浏览器的刷新频率
2)在隐藏或不可见的元素中,requestanimationframe将不会进行重绘或回流,这当然就意味着更少的cpu、gpu和内存使用量
3)requestanimationframe是由浏览器专门为动画提供的api,在运行时浏览器会自动优化方法的调用,并且如果页面不是激活状态下的话,动画会自动暂停,有效节省了cpu开销
一句话就是:这玩意性能高,不会卡屏,根据不同的浏览器自动调整帧率。如果看不懂或者不理解,也没有什么关系,这玩意跟浏览器渲染原理有关。我们先学会使用它!
如何使用requestanimationframe?
使用方式跟定时器settimeout差不多,不同之处在于,他不需要设置时间间隔参数
var timer = requestanimationframe( function(){             console.log( '定时器代码' );         } );
参数是一个回调函数,返回值是一个整数,用来表示定时器的编号.
<!doctype html> <html lang="en"> <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <meta http-equiv="x-ua-compatible" content="ie=edge">     <title>document</title>     <script>         window.onload = function(){             var ainput = document.queryselectorall( input ),                 timer = null;             ainput[0].onclick = function(){                 timer = requestanimationframe( function say(){                     console.log( 1 );                     timer = requestanimationframe( say );                 } );             };             ainput[1].onclick = function(){                 cancelanimationframe( timer );             }         }     </script> </head> <body>     <input type="button" value="开启">     <input type="button" value="关闭"> </body> </html>
cancelanimationframe用来关闭定时器
这个方法需要处理兼容:
简单的兼容:
window.requestanimframe = (function(){   return  window.requestanimationframe       ||           window.webkitrequestanimationframe ||           window.mozrequestanimationframe    ||           function( callback ){             window.settimeout(callback, 1000 / 60);           }; })();
如果浏览器都不认识animationframe,就用settimeout兼容.
运用3种不同的定时器(settimeout, setinterval, requestanimationframe)实现一个进度条的加载
一、setinterval方式:
<!doctype html> <html lang="en"> <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <meta http-equiv="x-ua-compatible" content="ie=edge">     <title>document</title>     <style>         p{             width:0px;             height:40px;             border-radius:20px;             background:#09f;             text-align:center;             font:bold 30px/40px '微软雅黑';             color:white;         }     </style>     <script>         window.onload = function(){             var obtn = document.queryselector( input ),                 obox = document.queryselector( p ),                 timer = null, curwidth = 0,                 getstyle = function( obj, name, value ){                     if( obj.currentstyle ) {                         return obj.currentstyle[name];                     }else {                         return getcomputedstyle( obj, false )[name];                     }                 };             obtn.onclick = function(){                 clearinterval( timer );                 obox.style.width = '0';                 timer = setinterval( function(){                     curwidth = parseint( getstyle( obox, 'width' ) );                     if ( curwidth < 1000 ) {                         obox.style.width = obox.offsetwidth + 10 + 'px';                         obox.innerhtml = parseint( getstyle( obox, 'width' ) ) / 10 + '%';                     }else {                         clearinterval( timer );                     }                 }, 1000 / 60 );             }         }     </script> </head> <body>     <p>0%</p>     <p><input type="button" value="ready!go"></p> </body> </html>
二、settimeout方式
<script>         window.onload = function(){             var obtn = document.queryselector( input ),                 obox = document.queryselector( p ),                 timer = null, curwidth = 0,                 getstyle = function( obj, name, value ){                     if( obj.currentstyle ) {                         return obj.currentstyle[name];                     }else {                         return getcomputedstyle( obj, false )[name];                     }                 };             obtn.onclick = function(){                 cleartimeout( timer );                 obox.style.width = '0';                 timer = settimeout( function go(){                     curwidth = parseint( getstyle( obox, 'width' ) );                     if ( curwidth < 1000 ) {                         obox.style.width = obox.offsetwidth + 10 + 'px';                         obox.innerhtml = parseint( getstyle( obox, 'width' ) ) / 10 + '%';                         timer = settimeout( go, 1000 / 60 );                     }else {                         clearinterval( timer );                     }                 }, 1000 / 60 );             }         }     </script>
三、requestanimationframe方式
<!doctype html> <html lang="en"> <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <meta http-equiv="x-ua-compatible" content="ie=edge">     <title>document</title>     <style>         p{             width:0px;             height:40px;             border-radius:20px;             background:#09f;             text-align:center;             font:bold 30px/40px '微软雅黑';             color:white;         }     </style>     <script>         window.onload = function(){             var obtn = document.queryselector( input ),                 obox = document.queryselector( p ),                 timer = null, curwidth = 0,                 getstyle = function( obj, name, value ){                     if( obj.currentstyle ) {                         return obj.currentstyle[name];                     }else {                         return getcomputedstyle( obj, false )[name];                     }                 };             obtn.onclick = function(){                 cancelanimationframe( timer );                 obox.style.width = '0';                 timer = requestanimationframe( function go(){                     curwidth = parseint( getstyle( obox, 'width' ) );                     if ( curwidth < 1000 ) {                         obox.style.width = obox.offsetwidth + 10 + 'px';                         obox.innerhtml = parseint( getstyle( obox, 'width' ) ) / 10 + '%';                         timer = requestanimationframe( go );                     }else {                         cancelanimationframe( timer );                     }                 } );             }         }     </script> </head> <body>     <p>0%</p>     <p><input type="button" value="ready!go"></p> </body> </html>
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
h5的drag与drop详解
使用canvas实现视频里的弹幕效果
以上就是h5的定时器requestanimationframe使用技巧的详细内容。
其它类似信息

推荐信息