使用 CanvasJS 绘制环形进度提示加返回顶部功能按钮
昆虫养殖 暂无评论

发现一个好用的 Canvas 函数

代码部分

JS 动画

需要在 body 里面添加如下 JS 代码

//返回顶部    
var bigfa_scroll = {    
    drawCircle: function(id, percentage, color) {    
        var width = jQuery(id).width();    
        var height = jQuery(id).height();    
        var radius = parseInt(width / 2.20);    
        var position = width;    
        var positionBy2 = position / 2;    
        var bg = jQuery(id)[0];    
        id = id.split("#");    
        var ctx = bg.getContext("2d");    
        var imd = null;    
        var circ = Math.PI * 2;    
        var quart = Math.PI / 2;    
        ctx.clearRect(0, 0, width, height);    
        ctx.beginPath();    
        ctx.strokeStyle = color;    
        ctx.lineCap = "square";    
        ctx.closePath();    
        ctx.fill();    
        ctx.lineWidth = 3;    
        imd = ctx.getImageData(0, 0, position, position);    
        var draw = function(current, ctxPass) {    
            ctxPass.putImageData(imd, 0, 0);    
            ctxPass.beginPath();    
            ctxPass.arc(positionBy2, positionBy2, radius, -(quart), ((circ) * current) - quart, false);    
            ctxPass.stroke();    
        }    
        draw(percentage / 100, ctx);    
    },    
    backToTop: function($this) {    
        $this.click(function() {    
            jQuery("body,html").animate({    
                scrollTop: 0    
            },    
            800);    
            return false;    
        });    
    },    
    scrollHook: function($this, color) {    
        color = color ? color: "#000000";    
        $this.scroll(function() {    
            var docHeight = (jQuery(document).height() - jQuery(window).height()),    
            $windowObj = $this,    
            $per = jQuery(".per"),    
            percentage = 0;    
            defaultScroll = $windowObj.scrollTop();    
            percentage = parseInt((defaultScroll / docHeight) * 100);    
            var backToTop = jQuery("#backtoTop");    
            if (backToTop.length > 0) {    
                if ($windowObj.scrollTop() > 100) {    
                    backToTop.addClass("button--show");    
                } else {    
                    backToTop.removeClass("button--show");    
                }    
                $per.attr("data-percent", percentage);    
                bigfa_scroll.drawCircle("#backtoTopCanvas", percentage, color);    
            }    
        });    
    }    
}    
jQuery(document).ready(function() {    
    jQuery("body").append('<div id="backtoTop" data-action="gototop"><canvas id="backtoTopCanvas" width="45" height="45"></canvas><div class="per"></div></div>');    
    var T = bigfa_scroll;    
    T.backToTop(jQuery("#backtoTop"));    
    T.scrollHook(jQuery(window), "#FF5E52");    
});

CSS 样式

#backtoTop {  
    background-color:#eee;  
    border-radius:100%;  
    bottombottom:10%;  
    height:48px;  
    position:fixed;  
    rightright:-100px;  
    width:48px;  
    transition:0.5s;  
    -webkit-transition:0.5s  
}  
#backtoTop.button--show{  
    rightright:10px  
}  
.per{  
    font-size:16px;  
    height:48px;  
    line-height:48px;  
    position:absolute;  
    text-align:center;  
    top:0;  
    width:48px;  
    color:#555;  
    cursor:pointer  
}  
.per:before{content:attr(data-percent)}  
.per:hover:before{content:"↑";font-size: 20px;line-height: 0;}

演示部分

本文撰写于一年前,如出现图片失效或有任何问题,请在下方留言。博主看到后将及时修正,谢谢!
禁用 / 当前已拒绝评论,仅可查看「历史评论」。