您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > css3特效 >

    13种CSS3网页加载进度条

    时间:2014-08-07 08:18 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印
    效果预览 进入下载地址列表

    13种CSS3网页加载进度条13种CSS3网页加载进度条,包括计数器进度条,顶部进度条,背景进度条等。简洁美观。CSS3进度条网页加载计数器

    <script>
        var loader = document.getElementById('la-anim-6-loader')
            , border = document.getElementById('la-anim-6-border')
            , α = 0
            , π = Math.PI
            , t = 15
            
            , tdraw;


        function PieDraw() {
            α++;
            α %= 360;
            var r = ( α * π / 180 )
            , x = Math.sin( r ) * 250
            , y = Math.cos( r ) * - 250
            , mid = ( α > 180 ) ? 1 : 0
            , anim = 'M 0 0 v -250 A 250 250 1 ' 
                   + mid + ' 1 ' 
                   +  x  + ' ' 
                   +  y  + ' z';


            loader.setAttribute( 'd', anim );
            border.setAttribute( 'd', anim );
            if( α != 0 )
            tdraw = setTimeout(PieDraw, t); // Redraw
        }


        function PieReset() {
            clearTimeout(tdraw);
            var anim = 'M 0 0 v -250 A 250 250 1 0 1 0 -250 z';
            loader.setAttribute( 'd', anim );
            border.setAttribute( 'd', anim );
        }


        var inProgress = false;


        Array.prototype.slice.call( document.querySelectorAll( '#la-buttons > button' ) ).forEach( function( el, i ) {
            var anim = el.getAttribute( 'data-anim' ),
                animEl = document.querySelector( '.' + anim );


            el.addEventListener( 'click', function() {
                if( inProgress ) return false;
                inProgress = true;
                classie.add( animEl, 'la-animate' );


                if( anim === 'la-anim-6' ) {
                    PieDraw();
                }


                setTimeout( function() {
                    classie.remove( animEl, 'la-animate' );
                    
                    if( anim === 'la-anim-6' ) {
                        PieReset();
                    }
                    
                    inProgress = false;
                }, 6000 );
            } );
        } );
    </script>

    13种CSS3网页加载进度条由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/css3texiao/9923.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!