我重新问这个问题......
我正在将此插件集成到我的网站中。
http://gianlucaguarini.com/canvas-experiments/jQuery-html5Loader/
效果很好但是,百分比计数器是在元素上绘制的,文字模糊不清(见截图)。
画布上的文字很模糊,如图所示。
基本上,插件本身只是预加载文件,插件的作者创建了几种不同形式的百分比动画,我包括创建百分比的代码。如果您想查看整个插件,可以通过上面的链接下载。此代码包含在jquery.big-counter.js.
/*global document window*/
;(function ($) {
'use strict';
$.fn.extend({
LoaderAnimation: function (customOptions) {
var defaults = {
lineWidth: 20, /* set preloader's line width */
color: "#ffffff", /* set preloader color */
glowColor: null, /* set shadow color */
radius: 40, /* set the preloader radius (JUST FOR CIRCULAR PRELOADER) */
font: "normal 100px Lobster Two", /* set preloader font (you can embed a font by css and use it here) */
onComplete: null /* on Animation completed */
},
$container = $(this),
// merging the custom options with the default ones
options = $.extend(defaults, customOptions),
self = this;
/*
*
* PUBLIC VAR
* Configuration
*
*/
var lineWidth = options.lineWidth,
color = options.color,
glowColor = options.glowColor,
radius = options.radius,
font = options.font;
this.currentPercentage = 0;
/*
*
* PRIVATE VAR
*
*/
var $window = $(window),
supportsCanvas = !!document.createElement('canvas').getContext,
canvasWidth = $(window).width(),
canvasHeight = $(window).height(),
$canvas, $fallbackHtml,ctx;
/*
*
* PRIVATE METHODS
*
*/
/*
*
* @description Used as fallback for the old browsers
*
*
*/
var fallback = function () {
$fallbackHtml.text((self.currentPercentage | 0)+ "%");
};
/*
*
* @description Clear the canvas during each frame of the animation
*
*
*/
var clear = function () {
if (supportsCanvas)
ctx.clearRect(0, 0, canvasWidth, canvasHeight);
return true;
};
/*
*
* @description Draw on the canvas the animation
*
*
*/
var draw = function () {
var width = canvasWidth,
height= canvasHeight,
positionX = canvasWidth / 2,
positionY = canvasHeight / 2,
alphaPercentage = (width / 100) * self.currentPercentage;
clear();
//clearing canvas from everithing
ctx.clearRect(0, 0, width, height);
//let's start drawning
ctx.restore();
ctx.beginPath();
//draw percentage text
ctx.font = font;
ctx.fillStyle = color;
ctx.textAlign = "center";
ctx.textBaseline="middle";
ctx.fillText((self.currentPercentage| 0) + "%", positionX - 8, positionY - 15);
//width of the preloader line
ctx.lineWidth = height;
//color of preloader line
ctx.strokeStyle = color;
if(glowColor){
ctx.shadowOffsetX = 0;
ctx.shadowOffsetY = 0;
ctx.shadowBlur = 10;
ctx.shadowColor = glowColor;
}
ctx.moveTo(positionX - (width / 2), positionY);
ctx.lineTo(alphaPercentage, positionY);
ctx.globalCompositeOperation = 'xor';
ctx.stroke();
ctx.restore();
};
/*
*
* @description Check if the precentage is equal to 100% to remove the preloader
*
*
*/
var onAnimationEnd = function () {
if(self.currentPercentage === 100) {
$container.delay(1000).fadeOut(function(){
$container.remove();
if (typeof options.onComplete === "function")
options.onComplete();
});
$window.off("resize.preloader");
}
};
/*
*
* @description Center the canvas on window resize
*
*
*/
var centerLoader = function () {
canvasWidth = $(window).width();
canvasHeight = $(window).height();
if(supportsCanvas) {
$canvas[0].width = canvasWidth;
$canvas[0].height = canvasHeight;
}
$container.width(canvasWidth);
$container.height(canvasHeight);
};
/*
*
* PUBLIC METHODS
*
*/
self.init = function () {
if(supportsCanvas) {
$canvas = $("<canvas>");
$container.append($canvas);
ctx = $canvas[0].getContext('2d');
} else {
$fallbackHtml = $("<i class='fallback'></i>");
$container.append($fallbackHtml);
}
centerLoader();
$window.on("resize.preloader",centerLoader);
};
self.update = function ( prercentage ) {
$.Animation(self, {
currentPercentage: prercentage
},{
duration: 3000
})
.stop(true,false)
.progress( function () {
if (supportsCanvas)
draw ();
else
fallback();
})
.done( onAnimationEnd );
};
this.init();
return this;
}
});
})(jQuery);
那么,是否有人知道我可以编辑源代码以动态创建百分比文本作为实际文本而不是在画布中绘制的方式?
答案 0 :(得分:1)
尝试替换此行:
ctx.fillText((self.currentPercentage| 0) + "%", positionX - 8, positionY - 15);
使用:
ctx.fillText((self.currentPercentage| 0) + "%", ((positionX - 8)|0) + 0.5,
((positionY - 15)|0) + 0.5;
Canvas上下文默认像素绘制位置位于像素的 center 中,这意味着抗锯齿几乎总是会产生模糊的外观。
将像素偏移半像素有助于在很多情况下像素与实际像素网格正确对齐(文本中仍会出现一些消除锯齿,但它应该会给你带来更好的效果)。