Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
殷洪(管理员)
/
raphael
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
36e869e4
authored
Mar 11, 2009
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bugs in the multiline text positioning
parent
f64adffa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
39 deletions
+47
-39
raphael.js
+47
-39
No files found.
raphael.js
View file @
36e869e4
...
@@ -328,7 +328,9 @@ var Raphael = (function () {
...
@@ -328,7 +328,9 @@ var Raphael = (function () {
if
(
typeof
pathArray
==
"string"
)
{
if
(
typeof
pathArray
==
"string"
)
{
pathArray
=
R
.
parsePathString
(
pathArray
);
pathArray
=
R
.
parsePathString
(
pathArray
);
}
}
var
x
=
0
,
y
=
0
,
start
=
0
;
var
x
=
0
,
y
=
0
,
start
=
0
;
if
(
pathArray
[
0
][
0
]
==
"M"
)
{
if
(
pathArray
[
0
][
0
]
==
"M"
)
{
x
=
+
pathArray
[
0
][
1
];
x
=
+
pathArray
[
0
][
1
];
y
=
+
pathArray
[
0
][
2
];
y
=
+
pathArray
[
0
][
2
];
...
@@ -337,8 +339,8 @@ var Raphael = (function () {
...
@@ -337,8 +339,8 @@ var Raphael = (function () {
}
}
for
(
var
i
=
start
,
ii
=
pathArray
.
length
;
i
<
ii
;
i
++
)
{
for
(
var
i
=
start
,
ii
=
pathArray
.
length
;
i
<
ii
;
i
++
)
{
res
[
i
]
=
[];
res
[
i
]
=
[];
if
(
pathArray
[
i
][
0
]
!=
pathArray
[
i
][
0
]
.
toUpperCase
())
{
if
(
pathArray
[
i
][
0
]
!=
(
pathArray
[
i
][
0
]
+
""
)
.
toUpperCase
())
{
res
[
i
][
0
]
=
pathArray
[
i
][
0
]
.
toUpperCase
();
res
[
i
][
0
]
=
(
pathArray
[
i
][
0
]
+
""
)
.
toUpperCase
();
switch
(
res
[
i
][
0
])
{
switch
(
res
[
i
][
0
])
{
case
"A"
:
case
"A"
:
res
[
i
][
1
]
=
pathArray
[
i
][
1
];
res
[
i
][
1
]
=
pathArray
[
i
][
1
];
...
@@ -915,6 +917,43 @@ var Raphael = (function () {
...
@@ -915,6 +917,43 @@ var Raphael = (function () {
}
}
tuneText
(
o
,
params
);
tuneText
(
o
,
params
);
};
};
var
leading
=
1.2
;
var
tuneText
=
function
(
element
,
params
)
{
if
(
element
.
type
!=
"text"
||
!
(
"text"
in
params
||
"font"
in
params
||
"font-size"
in
params
||
"x"
in
params
))
{
return
;
}
var
fontSize
=
element
.
node
.
firstChild
?
parseInt
(
doc
.
defaultView
.
getComputedStyle
(
element
.
node
.
firstChild
,
""
).
getPropertyValue
(
"font-size"
),
10
)
:
10
;
var
height
=
0
;
if
(
"text"
in
params
)
{
while
(
element
.
node
.
firstChild
)
{
element
.
node
.
removeChild
(
element
.
node
.
firstChild
);
}
var
texts
=
(
params
.
text
+
""
).
split
(
"\n"
);
for
(
var
i
=
0
,
ii
=
texts
.
length
;
i
<
ii
;
i
++
)
{
var
tspan
=
doc
.
createElementNS
(
element
.
svg
.
svgns
,
"tspan"
);
i
&&
tspan
.
setAttribute
(
"dy"
,
fontSize
*
leading
);
i
&&
tspan
.
setAttribute
(
"x"
,
element
.
attrs
.
x
);
tspan
.
appendChild
(
doc
.
createTextNode
(
texts
[
i
]));
element
.
node
.
appendChild
(
tspan
);
height
+=
fontSize
*
leading
;
}
}
else
{
var
texts
=
element
.
node
.
getElementsByTagName
(
"tspan"
);
for
(
var
i
=
0
,
ii
=
texts
.
length
;
i
<
ii
;
i
++
)
{
i
&&
texts
[
i
].
setAttribute
(
"dy"
,
fontSize
*
leading
);
i
&&
texts
[
i
].
setAttribute
(
"x"
,
element
.
attrs
.
x
);
height
+=
fontSize
*
leading
;
}
}
height
-=
fontSize
*
(
leading
-
1
);
var
dif
=
height
/
2
-
fontSize
;
if
(
dif
)
{
element
.
node
.
setAttribute
(
"y"
,
element
.
attrs
.
y
-
dif
);
}
setTimeout
(
function
()
{
});
};
var
Element
=
function
(
node
,
svg
)
{
var
Element
=
function
(
node
,
svg
)
{
var
X
=
0
,
var
X
=
0
,
Y
=
0
;
Y
=
0
;
...
@@ -1132,42 +1171,6 @@ var Raphael = (function () {
...
@@ -1132,42 +1171,6 @@ var Raphael = (function () {
res
.
type
=
"image"
;
res
.
type
=
"image"
;
return
res
;
return
res
;
};
};
var
leading
=
1.2
;
var
tuneText
=
function
(
element
,
params
)
{
if
(
element
.
type
!=
"text"
)
{
return
;
}
var
fontSize
=
element
.
node
.
firstChild
?
parseInt
(
doc
.
defaultView
.
getComputedStyle
(
element
.
node
.
firstChild
,
""
).
getPropertyValue
(
"font-size"
),
10
)
:
10
;
var
height
=
0
;
if
(
"text"
in
params
)
{
while
(
element
.
node
.
firstChild
)
{
element
.
node
.
removeChild
(
element
.
node
.
firstChild
);
}
var
texts
=
(
params
.
text
+
""
).
split
(
"\n"
);
for
(
var
i
=
0
,
ii
=
texts
.
length
;
i
<
ii
;
i
++
)
{
var
tspan
=
doc
.
createElementNS
(
element
.
svg
.
svgns
,
"tspan"
);
i
&&
tspan
.
setAttribute
(
"dy"
,
fontSize
*
leading
);
tspan
.
setAttribute
(
"x"
,
element
.
attrs
.
x
);
tspan
.
appendChild
(
doc
.
createTextNode
(
texts
[
i
]));
element
.
node
.
appendChild
(
tspan
);
height
+=
fontSize
*
leading
;
}
}
else
if
(
"font"
in
params
||
"font-size"
in
params
)
{
var
texts
=
element
.
node
.
getElementsByTagName
(
"tspan"
);
for
(
var
i
=
0
,
ii
=
texts
.
length
;
i
<
ii
;
i
++
)
{
i
&&
texts
[
i
].
setAttribute
(
"dy"
,
fontSize
*
leading
);
height
+=
fontSize
*
leading
;
}
}
height
-=
fontSize
*
(
leading
-
1
);
var
dif
=
height
/
2
-
fontSize
;
if
(
dif
)
{
element
.
node
.
setAttribute
(
"y"
,
element
.
attrs
.
y
-
dif
);
}
setTimeout
(
function
()
{
});
};
var
theText
=
function
(
svg
,
x
,
y
,
text
)
{
var
theText
=
function
(
svg
,
x
,
y
,
text
)
{
var
el
=
doc
.
createElementNS
(
svg
.
svgns
,
"text"
);
var
el
=
doc
.
createElementNS
(
svg
.
svgns
,
"text"
);
el
.
setAttribute
(
"x"
,
x
);
el
.
setAttribute
(
"x"
,
x
);
...
@@ -2135,6 +2138,11 @@ var Raphael = (function () {
...
@@ -2135,6 +2138,11 @@ var Raphael = (function () {
obj
.
attachEvent
(
"on"
+
type
,
function
(
e
)
{
obj
.
attachEvent
(
"on"
+
type
,
function
(
e
)
{
return
fn
.
call
(
element
,
e
||
win
.
event
);
return
fn
.
call
(
element
,
e
||
win
.
event
);
});
});
// if (type == "mouseout") {
// obj.attachEvent("onmouseleave", function (e) {
// return fn.call(element, e || win.event);
// });
// }
};
};
}
}
})();
})();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment