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
0c4db232
authored
Sep 05, 2011
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for Firefox rendering, exposed createUUID() and added docs for delay() method
parent
1dacaa38
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
11 deletions
+21
-11
raphael-min.js
+0
-0
raphael.core.js
+11
-2
raphael.js
+6
-5
raphael.svg.js
+4
-4
No files found.
raphael-min.js
View file @
0c4db232
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
0c4db232
...
@@ -283,7 +283,7 @@
...
@@ -283,7 +283,7 @@
return
rectPath
(
bbox
.
x
,
bbox
.
y
,
bbox
.
width
,
bbox
.
height
);
return
rectPath
(
bbox
.
x
,
bbox
.
y
,
bbox
.
width
,
bbox
.
height
);
}
}
},
},
mapPath
=
function
(
path
,
matrix
)
{
mapPath
=
R
.
mapPath
=
function
(
path
,
matrix
)
{
if
(
!
matrix
)
{
if
(
!
matrix
)
{
return
path
;
return
path
;
}
}
...
@@ -467,7 +467,13 @@
...
@@ -467,7 +467,13 @@
return
value
;
return
value
;
};
};
var
createUUID
=
R
.
_createUUID
=
(
function
(
uuidRegEx
,
uuidReplacer
)
{
/*\
* Raphael.createUUID
[ method ]
**
* Returns RFC4122, version 4 ID
\*/
var
createUUID
=
R
.
createUUID
=
(
function
(
uuidRegEx
,
uuidReplacer
)
{
return
function
()
{
return
function
()
{
return
"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
.
replace
(
uuidRegEx
,
uuidReplacer
).
toUpperCase
();
return
"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
.
replace
(
uuidRegEx
,
uuidReplacer
).
toUpperCase
();
};
};
...
@@ -3655,6 +3661,9 @@
...
@@ -3655,6 +3661,9 @@
- delay (number) number of ms to pass between animation start and actual animation
- delay (number) number of ms to pass between animation start and actual animation
**
**
= (object) new altered Animation object
= (object) new altered Animation object
| var anim = Raphael.animation({cx: 10, cy: 20}, 2e3);
| circle1.animate(anim); // run the given animation immediately
| circle2.animate(anim.delay(500)); // run the given animation after 500 ms
\*/
\*/
Animation
.
prototype
.
delay
=
function
(
delay
)
{
Animation
.
prototype
.
delay
=
function
(
delay
)
{
var
a
=
new
Animation
(
this
.
anim
,
this
.
ms
);
var
a
=
new
Animation
(
this
.
anim
,
this
.
ms
);
...
...
raphael.js
View file @
0c4db232
...
@@ -416,7 +416,7 @@
...
@@ -416,7 +416,7 @@
return
rectPath
(
bbox
.
x
,
bbox
.
y
,
bbox
.
width
,
bbox
.
height
);
return
rectPath
(
bbox
.
x
,
bbox
.
y
,
bbox
.
width
,
bbox
.
height
);
}
}
},
},
mapPath
=
function
(
path
,
matrix
)
{
mapPath
=
R
.
mapPath
=
function
(
path
,
matrix
)
{
if
(
!
matrix
)
{
if
(
!
matrix
)
{
return
path
;
return
path
;
}
}
...
@@ -513,7 +513,8 @@
...
@@ -513,7 +513,8 @@
return
value
;
return
value
;
};
};
var
createUUID
=
R
.
_createUUID
=
(
function
(
uuidRegEx
,
uuidReplacer
)
{
var
createUUID
=
R
.
createUUID
=
(
function
(
uuidRegEx
,
uuidReplacer
)
{
return
function
()
{
return
function
()
{
return
"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
.
replace
(
uuidRegEx
,
uuidReplacer
).
toUpperCase
();
return
"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
.
replace
(
uuidRegEx
,
uuidReplacer
).
toUpperCase
();
};
};
...
@@ -3698,7 +3699,7 @@ window.Raphael.svg && function (R) {
...
@@ -3698,7 +3699,7 @@ window.Raphael.svg && function (R) {
o
.
clip
&&
o
.
clip
.
parentNode
.
parentNode
.
removeChild
(
o
.
clip
.
parentNode
);
o
.
clip
&&
o
.
clip
.
parentNode
.
parentNode
.
removeChild
(
o
.
clip
.
parentNode
);
var
el
=
$
(
"clipPath"
),
var
el
=
$
(
"clipPath"
),
rc
=
$
(
"rect"
);
rc
=
$
(
"rect"
);
el
.
id
=
R
.
_
createUUID
();
el
.
id
=
R
.
createUUID
();
$
(
rc
,
{
$
(
rc
,
{
x
:
rect
[
0
],
x
:
rect
[
0
],
y
:
rect
[
1
],
y
:
rect
[
1
],
...
@@ -3808,7 +3809,7 @@ window.Raphael.svg && function (R) {
...
@@ -3808,7 +3809,7 @@ window.Raphael.svg && function (R) {
if
(
isURL
)
{
if
(
isURL
)
{
el
=
$
(
"pattern"
);
el
=
$
(
"pattern"
);
var
ig
=
$
(
"image"
);
var
ig
=
$
(
"image"
);
el
.
id
=
R
.
_
createUUID
();
el
.
id
=
R
.
createUUID
();
$
(
el
,
{
x
:
0
,
y
:
0
,
patternUnits
:
"userSpaceOnUse"
,
height
:
1
,
width
:
1
});
$
(
el
,
{
x
:
0
,
y
:
0
,
patternUnits
:
"userSpaceOnUse"
,
height
:
1
,
width
:
1
});
$
(
ig
,
{
x
:
0
,
y
:
0
,
"xlink:href"
:
isURL
[
1
]});
$
(
ig
,
{
x
:
0
,
y
:
0
,
"xlink:href"
:
isURL
[
1
]});
el
.
appendChild
(
ig
);
el
.
appendChild
(
ig
);
...
@@ -4206,7 +4207,7 @@ window.Raphael.svg && function (R) {
...
@@ -4206,7 +4207,7 @@ window.Raphael.svg && function (R) {
var
fltr
=
$
(
"filter"
),
var
fltr
=
$
(
"filter"
),
blur
=
$
(
"feGaussianBlur"
);
blur
=
$
(
"feGaussianBlur"
);
t
.
attrs
.
blur
=
size
;
t
.
attrs
.
blur
=
size
;
fltr
.
id
=
R
.
_
createUUID
();
fltr
.
id
=
R
.
createUUID
();
$
(
blur
,
{
stdDeviation
:
+
size
||
1.5
});
$
(
blur
,
{
stdDeviation
:
+
size
||
1.5
});
fltr
.
appendChild
(
blur
);
fltr
.
appendChild
(
blur
);
t
.
paper
.
defs
.
appendChild
(
fltr
);
t
.
paper
.
defs
.
appendChild
(
fltr
);
...
...
raphael.svg.js
View file @
0c4db232
...
@@ -362,7 +362,7 @@ window.Raphael.svg && function (R) {
...
@@ -362,7 +362,7 @@ window.Raphael.svg && function (R) {
o
.
clip
&&
o
.
clip
.
parentNode
.
parentNode
.
removeChild
(
o
.
clip
.
parentNode
);
o
.
clip
&&
o
.
clip
.
parentNode
.
parentNode
.
removeChild
(
o
.
clip
.
parentNode
);
var
el
=
$
(
"clipPath"
),
var
el
=
$
(
"clipPath"
),
rc
=
$
(
"rect"
);
rc
=
$
(
"rect"
);
el
.
id
=
R
.
_
createUUID
();
el
.
id
=
R
.
createUUID
();
$
(
rc
,
{
$
(
rc
,
{
x
:
rect
[
0
],
x
:
rect
[
0
],
y
:
rect
[
1
],
y
:
rect
[
1
],
...
@@ -472,7 +472,7 @@ window.Raphael.svg && function (R) {
...
@@ -472,7 +472,7 @@ window.Raphael.svg && function (R) {
if
(
isURL
)
{
if
(
isURL
)
{
el
=
$
(
"pattern"
);
el
=
$
(
"pattern"
);
var
ig
=
$
(
"image"
);
var
ig
=
$
(
"image"
);
el
.
id
=
R
.
_
createUUID
();
el
.
id
=
R
.
createUUID
();
$
(
el
,
{
x
:
0
,
y
:
0
,
patternUnits
:
"userSpaceOnUse"
,
height
:
1
,
width
:
1
});
$
(
el
,
{
x
:
0
,
y
:
0
,
patternUnits
:
"userSpaceOnUse"
,
height
:
1
,
width
:
1
});
$
(
ig
,
{
x
:
0
,
y
:
0
,
"xlink:href"
:
isURL
[
1
]});
$
(
ig
,
{
x
:
0
,
y
:
0
,
"xlink:href"
:
isURL
[
1
]});
el
.
appendChild
(
ig
);
el
.
appendChild
(
ig
);
...
@@ -1110,7 +1110,7 @@ window.Raphael.svg && function (R) {
...
@@ -1110,7 +1110,7 @@ window.Raphael.svg && function (R) {
var
fltr
=
$
(
"filter"
),
var
fltr
=
$
(
"filter"
),
blur
=
$
(
"feGaussianBlur"
);
blur
=
$
(
"feGaussianBlur"
);
t
.
attrs
.
blur
=
size
;
t
.
attrs
.
blur
=
size
;
fltr
.
id
=
R
.
_
createUUID
();
fltr
.
id
=
R
.
createUUID
();
$
(
blur
,
{
stdDeviation
:
+
size
||
1.5
});
$
(
blur
,
{
stdDeviation
:
+
size
||
1.5
});
fltr
.
appendChild
(
blur
);
fltr
.
appendChild
(
blur
);
t
.
paper
.
defs
.
appendChild
(
fltr
);
t
.
paper
.
defs
.
appendChild
(
fltr
);
...
@@ -1280,7 +1280,7 @@ window.Raphael.svg && function (R) {
...
@@ -1280,7 +1280,7 @@ window.Raphael.svg && function (R) {
R
.
prototype
.
renderfix
=
function
()
{
R
.
prototype
.
renderfix
=
function
()
{
var
cnvs
=
this
.
canvas
,
var
cnvs
=
this
.
canvas
,
s
=
cnvs
.
style
,
s
=
cnvs
.
style
,
pos
=
cnvs
.
getScreenCTM
(),
pos
=
cnvs
.
getScreenCTM
()
||
cnvs
.
createSVGMatrix
()
,
left
=
-
pos
.
e
%
1
,
left
=
-
pos
.
e
%
1
,
top
=
-
pos
.
f
%
1
;
top
=
-
pos
.
f
%
1
;
if
(
left
||
top
)
{
if
(
left
||
top
)
{
...
...
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