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
a331eb5d
authored
May 02, 2010
by
DmitryBaranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for touch events and drag method
parent
08cf66bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
20 deletions
+15
-20
raphael.js
+15
-20
No files found.
raphael.js
View file @
a331eb5d
/*!
/*!
* Raphael 1.4.0 - JavaScript Vector Library
* Raphael 1.4.0
-pre
- JavaScript Vector Library
*
*
* Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com)
* Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
...
@@ -2491,12 +2491,13 @@ Raphael = (function () {
...
@@ -2491,12 +2491,13 @@ Raphael = (function () {
if
(
doc
.
addEventListener
)
{
if
(
doc
.
addEventListener
)
{
return
function
(
obj
,
type
,
fn
,
element
)
{
return
function
(
obj
,
type
,
fn
,
element
)
{
var
f
=
function
(
e
)
{
var
f
=
function
(
e
)
{
if
(
e
.
touches
)
{
if
(
e
.
t
argetT
ouches
)
{
for
(
var
i
=
0
,
ii
=
e
.
touches
.
length
;
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
e
.
t
argetT
ouches
.
length
;
i
<
ii
;
i
++
)
{
if
(
e
.
touches
[
i
].
target
==
obj
)
{
if
(
e
.
t
argetT
ouches
[
i
].
target
==
obj
)
{
var
olde
=
e
;
var
olde
=
e
;
e
=
e
.
touches
[
i
];
e
=
e
.
targetTouches
[
i
];
e
.
originalEvent
=
e
;
e
.
originalEvent
=
olde
;
break
;
}
}
}
}
}
}
...
@@ -2561,12 +2562,13 @@ Raphael = (function () {
...
@@ -2561,12 +2562,13 @@ Raphael = (function () {
Raphael
.
mousemove
(
move
).
mouseup
(
up
);
Raphael
.
mousemove
(
move
).
mouseup
(
up
);
}),
}),
move
=
function
(
e
)
{
move
=
function
(
e
)
{
if
(
e
.
changedT
ouches
)
{
if
(
e
.
t
ouches
)
{
for
(
var
i
=
0
,
ii
=
e
.
changedT
ouches
.
length
;
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
e
.
t
ouches
.
length
;
i
<
ii
;
i
++
)
{
var
touch
=
e
.
changedT
ouches
[
i
];
var
touch
=
e
.
t
ouches
[
i
];
if
(
touch
.
identifier
==
el
.
_drag
.
id
)
{
if
(
touch
.
identifier
==
el
.
_drag
.
id
)
{
f
.
call
(
el
,
touch
.
clientX
-
el
.
_drag
.
x
,
touch
.
clientY
-
el
.
_drag
.
y
);
f
.
call
(
el
,
touch
.
clientX
-
el
.
_drag
.
x
,
touch
.
clientY
-
el
.
_drag
.
y
);
e
.
preventDefault
();
e
.
preventDefault
();
break
;
}
}
}
}
}
else
{
}
else
{
...
@@ -2575,18 +2577,11 @@ Raphael = (function () {
...
@@ -2575,18 +2577,11 @@ Raphael = (function () {
}
}
},
},
up
=
function
(
e
)
{
up
=
function
(
e
)
{
if
(
e
.
changedTouches
)
{
el
.
_drag
=
{};
for
(
var
i
=
0
,
ii
=
e
.
changedTouches
.
length
;
i
<
ii
;
i
++
)
{
Raphael
.
unmousemove
(
move
).
unmouseup
(
up
);
if
(
e
.
changedTouches
[
i
].
identifier
==
el
.
_drag
.
id
)
{
end
&&
end
.
call
(
el
);
Raphael
.
unmousemove
(
move
).
unmouseup
(
up
);
end
&&
end
.
call
(
el
);
}
}
}
else
{
Raphael
.
unmousemove
(
move
).
unmouseup
(
up
);
end
&&
end
.
call
(
el
);
}
};
};
return
this
;
};
};
Paper
[
proto
].
circle
=
function
(
x
,
y
,
r
)
{
Paper
[
proto
].
circle
=
function
(
x
,
y
,
r
)
{
return
theCircle
(
this
,
x
||
0
,
y
||
0
,
r
||
0
);
return
theCircle
(
this
,
x
||
0
,
y
||
0
,
r
||
0
);
...
...
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