我正在尝试为我正在制作的游戏创建进度条。但是当我尝试将画布连接到div时,我得到了这个HierarchyRequestError。这是代码片段。任何帮助将不胜感激。
this.setSizePercent(horizontalSizePercent, verticalSizePercent);
this.createCanvas();
this.createDOMElement();
return this;
};
//原型
COREHTML5.RoundedRectangle.prototype = {
createCanvas: function () {
var canvas1 = document.createElement('canvas');
this.context1 = canvas1.getContext('2d');
return canvas1;
},
createDOMElement: function () {
this.domElement = document.createElement('div');
this.domElement.appendChild(this.context1.canvas1);
},
appendTo: function (element) {
element.appendChild(this.domElement);
this.domElement.style.width = element.offsetWidth + 'px';
this.domElement.style.height = element.offsetHeight + 'px';
this.resize(element.offsetWidth, element.offsetHeight);
},
resize: function (width, height) {
this.HORIZONTAL_MARGIN = (width - width *
this.horizontalSizePercent) / 2;
this.VERTICAL_MARGIN = (height - height *
this.verticalSizePercent) / 2;
this.cornerRadius = (this.context1.canvas1.height / 2 -
2 * this.VERTICAL_MARGIN) / 2;
this.top = this.VERTICAL_MARGIN;
this.left = this.HORIZONTAL_MARGIN;
this.right = this.left + width - 2 * this.HORIZONTAL_MARGIN;
this.bottom = this.top + height - 2 * this.VERTICAL_MARGIN;
答案 0 :(得分:0)