そのため、Raphael でテキスト文字列のサイズを取得しようとしていますが、それができないようです。ドキュメントにはそう書かれていますが、
.attr('width');
はオプションです...幅も設定できません。
ここにフィドルがあります
これは私が試してきたことです...さらに他の粗雑な方法(Jqueryを使用しても)
var page = Raphael("drawing_board");
// start, move, and up are the drag functions
start = function () {
// storing original coordinates
this.ox = this.attr("x");
this.oy = this.attr("y");
this.attr({opacity: .5});
console.log( this.attr('width') ); //THIS IS WHERE I AM TRYING TO GET THE WIDTH
},
move = function (dx, dy) {
// move will be called with dx and dy
nowX = Math.min(600, this.ox + dx);
nowY = Math.min(400, this.oy + dy);
nowX = Math.max(0, nowX);
nowY = Math.max(0, nowY);
this.attr({x: nowX, y: nowY });
},
up = function () {
// restoring state
this.attr({opacity: 1});
};
page.text(200, 50, "TEXT 1").attr({ cursor: "move", 'font-size': 16 , fill: '#3D6AA2'}).drag(move, start, up);
page.text(200, 200, "TEXT 2").attr({ cursor: "move", 'font-size': 16 , fill: '#3D6AA2'}).drag(move, start, up);
たぶん私は何か他のものを使う必要があります
this.attr('width' : 30); //To Set
this.attr('width'); //To Get